You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
SELECT
date_add(PARSE_DATE('%Y%m%d', date), interval DATE_DIFF(CURRENT_DATE(), '2017-08-01',DAY) DAY) as dt,
geoNetwork.country, trafficSource.source,
SUM(totals.visits) AS visits,
SUM(totals.pageviews) AS pageviews
FROM `bigquery-public-data.google_analytics_sample.ga_sessions_*`
WHERE
_TABLE_SUFFIX BETWEEN '20160801' AND '20170731'
GROUP BY 1, 2, 3
ORDER BY 1
Its actually good to hav the sample data set used in the demo in repo or somewhere.
The text was updated successfully, but these errors were encountered: