This function joins the text fetched from multiple strings.
CONCAT(textvalue1, textvalue2,...)
This function has the following arguments:
textvalue1 | Refers to a text string, or array of strings, to be joined. |
textvalue2 | [Optional] Refers to the additional text strings to be joined. |
There can be a maximum of 253 text items in arguments (including textvalue1).
In the result, this function never includes the delimiter (spaces, ampersands etc.) between each text value and never eliminates the empty arguments.
Accepts string data. Returns string data.
CONCAT(Riot,",",Pauler) gives the result Riot Pauler.