CONCAT¶
The CONCAT function is used to concatenate two or more list values together.
Syntax¶
Parameters:
list_value1,list_value2, ...: List values that will be concatenated.
Examples¶
Example: CONCAT two lists¶
Result:
| myconcat |
|---|
| [1, 2, 3, "one", "two", "three"] |