I use below query to fetch data for specified data range.
SELECT event_date, count(event_name) as APP_Installs FROM
`<Table>.events_*` WHERE _TABLE_SUFFIX BETWEEN '201900201' AND '20190228'
and event_name='first_open' group by 1
- How to query event table for yesterday data without mentioned the date value in Bigquery?
- How to query event table for last 7 days data without mentioned the date value in Bigquery?
Pls. Help
0
...'201900201'
should have been'20190201'
– MatBailie