ARRAY_AGG
This section contains reference documentation for the ARRAY_AGG function.
Signature
Usage Examples
SELECT ARRAY_AGG(firstName, 'STRING', true) AS firstNames from transcript;firstNames
Was this helpful?
This section contains reference documentation for the ARRAY_AGG function.
Concatenates the input values into an array.
ARRAY_AGG(dataColumn, 'dataType', [isDistinct])
SELECT ARRAY_AGG(firstName, 'STRING', true) AS firstNames from transcript;Bob,Nick,Lucy
Was this helpful?
Was this helpful?

