CONCAT function (ODBC compatible)
Syntax
CONCAT ( char_expression , char_expression )
Description
The scalar function CONCAT returns a concatenated character string formed by concatenating argument one with argument two.
The CONCAT scalar function is similar to the concatenation operator. However, the concatenation operator allows easy concatenation of more than two character expressions by nesting the CONCAT function.
Example
SELECT name, empno, salary
FROM customer
WHERE project = CONCAT('US',proj_nam);
Notes