Created
November 8, 2019 09:54
-
-
Save konosp/c4d0b74d49e0339cd873e81b252aa4d3 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| -- This query is not valid as there is no realtime data available in the sample data set. | |
| SELECT | |
| date, | |
| COUNT(DISTINCT CONCAT(fullVisitorId, CAST(visitStartTime AS STRING))) AS Sessions | |
| FROM | |
| `project.dataset.ga_realtime_view` | |
| WHERE | |
| suffix = CURRENT_DATE() | |
| AND totals.visits = 1 | |
| GROUP BY | |
| 1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment