CONCAT

The string function used to concatenate two or more strings.

ParameterTypeDescription
string1
any
the first string to concatenate
string2
any
the second string to concatenate
Returns: string

Example

query:

SELECT CONCAT("black", " ", "cat")

results:

concat
black cat

CONCAT can take any number of arguments.