Data Archive
- Data Archive 6.5
- All Products
CONCAT (string, string)
|
|
|---|---|
|
|
CREATE TABLE string_table (col1 VARCHAR(20)); INSERT INTO string_table VALUES (CONCAT('hello', 'world')); 1 row affected SELECT col1 FROM string_table; 1 row selected col1 -------------------- helloworld