I has a SQL code in Legacy SQL was worked,
but in Standard SQL was wrong,
got the response:
Grouping by expressions of type ARRAY is not allowed
Is there any way can resolve ?
Here's my SQL code:
select tag
from
(
select SPLIT(content_tag, ',') as tag
from `test.log`
)
group by tag