CONCAT
The CONCAT function concatenates two texts.
Syntax
CONCAT(object1, object2, [separator])
Argument name
Description
object1
Required
A text or variable.
object2
Required
A text or variable.
separator
Optional
A text separator to separate both arguments.
Examples
CONCAT('dog', dog) returns dog1 if the variable dog value is 1.
CONCAT(key, value, '-') returns dog-1 if the variable key is dog and value is 1.
Last updated