CONCAT
Description
CONCAT
and ||
return the concatenation of two or more strings.
Supported input column types: STRING, INT, FLOAT. INT
and FLOAT
types are internally automatically converted to STRING
before the concatenation is executed. See the examples below how FLOAT
values are converted to STRING
.
Output column type: STRING
Syntax
CONCAT ( table.column1, ..., table.columnN )
table.column1 || table.column2 [ || table.columnN ]*
NULL handling
If at least one value is NULL, the result of the concatenation is NULL.
Examples
[1] Concatenate column values with constant string. | ||||||||||||||
| ||||||||||||||
|
[2] Concatenation of 3 strings with | ||||||||||||||||||||||||||||||||||||||||
| ||||||||||||||||||||||||||||||||||||||||
|
[3] Concatenation of | ||||||||||||||||
| ||||||||||||||||
|
[4] | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|