I have a query where I am using GROUP_CONCAT and a custom separator as my results may contain commas: \'----\'
GROUP_CONCAT
This all works well, however it is still
Or, if you are doing a split - join:
GROUP_CONCAT(split(thing, " "), '----') AS thing_name,
You may want to inclue WITHIN RECORD, like this:
WITHIN RECORD
GROUP_CONCAT(split(thing, " "), '----') WITHIN RECORD AS thing_name,
from BigQuery API page