LEFT OUTER JOIN Error creating a subquery on bigquery
问题 I'm trying to eval MAL, WAL and DAU from a event table on my bq... I create a query find DAU and with him find WAU and MAU, but it does not work, i received this error: LEFT OUTER JOIN cannot be used without a condition that is an equality of fields from both sides of the join. It's my query WITH dau AS ( SELECT date, COUNT(DISTINCT(events.device_id)) as DAU_explorer FROM `workspace.event_table` as events GROUP BY 1 ) SELECT date, dau, (SELECT COUNT(DISTINCT(device_id)) FROM `workspace.event