Recently I started to work on BigQuery and there's something that makes me still confused. What's the alternative for this query on Big Query?
select a.abc, c.xyz
from table1 as a
left join table2 as c
on a.abc = c.abc
and c.date = (select t.date from table3 t)
The things is that Big Query doesn't support the subquery in join. I've tried many alternatives but the result doesn't match to each other.