fn concat(vals: impl Row, writer: &mut impl Write)
Expand description
Concatenates the text representations of all the arguments. NULL arguments are ignored.
ยงExample
query T
select concat('abcde', 2, NULL, 22);
----
abcde222
query T
select concat(variadic array['abcde', '2', NULL, '22']);
----
abcde222