CONCAT
Concatenates the given arguments.
This function provides the same functionality as the SQL-standard concatenation operator (||
).
Syntax
Arguments
STRING
STRING
Type: string
A string to concatenate.
Returns
Type: string
The concatenation of all the STRING
arguments.
Examples
Transformation job example
SQL
Query result
customer_fullname
customer_firstname
customer_lastname
Kathryn Kelly
Kathryn
Kelly
Adam Turner
Adam
Turner
Richard Miller
Richard
Miller
Last updated