I want to select rows that have more thank k values in a repeated field. (consider for example selecting user that have more than 3 email addresses)
In Standard SQL I know I can use
SELECT * FROM dataset.users WHERE array_length(email_address) > 3 But what is the way to do this in BigQuery legacy SQL?