Created
November 8, 2019 09:54
-
-
Save konosp/c95e0b19b8463d5470f9a6e71365295e 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. | |
| CREATE VIEW | |
| `project.dataset.ga_realtime_view` AS | |
| SELECT | |
| PARSE_DATE('%y%m%d', | |
| _TABLE_SUFFIX) AS suffix, | |
| visitKey AS visitKey2, | |
| ARRAY_AGG(t | |
| ORDER BY | |
| exportTimeUsec DESC | |
| LIMIT | |
| 1)[ | |
| OFFSET | |
| (0)].* | |
| FROM | |
| `project.dataset.ga_realtime_sessions_20*` AS t | |
| GROUP BY | |
| suffix, | |
| visitKey2 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment