concat
Returns the concatenation of an arbitrary number of string expressions.
Example
concat("San M", "ateo", " Bridge")Syntax
concat(string str1, string str2, . . ., string strN)- strN: expressions evaluating to
strings
Returns
string
Notes
concat takes an arbitrary number of string fragments and joins them together to produce on string.