string_concat¶
Description¶
Return the concatenation of all string arguments.
Return type¶
string
Domain¶
This is a scalar function (calculates a single output value for a single input row.)
Categories¶
Usage¶
string_concat( str ... )
Argument |
Type |
Required |
Multiple |
---|---|---|---|
str |
string |
Required |
Can be multiple |
Examples¶
make_col foo:string_concat(colstr1, " ", colstr2)
Make a new column ‘foo’ that is the concatenation of ‘colstr1’, ” “, and ‘colstr2’
Aliases¶
strcat
(deprecated)