The CONCAT function concatenates two texts.
CONCAT(object1, object2, [separator])
Argument name
Description
object1
Required
A text or variable.
object2
separator
Optional
A text separator to separate both arguments.
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 5 years ago