Trying to query froma table in bigquery and filter using a column which is identified as TYPE: STRING, MODE: REPEATED.
When I try the following code:
select *
from transactions
where brands in (select brand from brand_list)
I get the following error:
Cannot execute IN subquery with uncomparable types ARRAY<STRING> and STRING
Why does this happen and how can I filter a column that contains ARRAY?