CONCAT_FN
All functions > STRING > CONCAT_FN
Function description not available
Signatures
Examples
FeatureQL
SELECT
f1 := CONCAT_FN(ARRAY['A', 'B', 'C']), -- Array form
f2 := CONCAT_FN(ARRAY['Hello', ' ', 'World']), -- With spaces
f3 := CONCAT_FN(ARRAY['One']) -- Single element
;Result
| f1 VARCHAR | f2 VARCHAR | f3 VARCHAR |
|---|---|---|
| ABC | Hello World | One |
On this page