Parameter | Type | Description |
---|---|---|
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.