My job has tasked me with summarizing values of multiple arrays and I've reached a gap in my knowledge. The insight and assistance from this group is greatly appreciated.
The challenge:
I have an array of domain TLDs in each row within a single column BigQuery table. I would like to group by each TLD and return a total count by each TLD as a new table.
["biz","us","international","eu","com","co","world","us","international","eu","co","biz"]
["com","co","world"]
Response
**TLD_Name**
biz 2
us 2
international 2
eu 2
com 2
co 3
world 1
Thanks in advance for the help.