For example:
column_a
"one"
"two"
"three"
Then: STRING_AGG("column_a", ',') => "one,two,three"
STRING_AGG is not available as an error message tells me. How can I perform this action then?
(I am working on a Transformation in a Data Job.)
(CONCAT() concatenates across columns, but I want to concatenate across rows.)