I have a basic BigQuery Unnesting Join question
I have a Session Events Table and a Setting Event table. The Setting Event Table has a nested column called "data".
Once I flatten setting_event.data (aka unnest), a column from it needs to join to a column from the Session Events table.
Is there a way to directly JOIN Session Events Table to the unnested Setting_event.data? I've tried doing:
SELECT .... FROM SESSION_EVENTS LEFT JOIN UNNEST([setting_event.data])
However, I'm receiving a setting_event not found.
How would I do this in Standard BQ SQL?
JOIN
of course - care to leave more specifics for a more specific answer? – Felipe Hoffa