Created
September 30, 2020 12:38
-
-
Save adityawarmanfw/e3fa295dc819d847774c3e1584e1798c to your computer and use it in GitHub Desktop.
media analytics
This file contains 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
SELECT episode, | |
event_name, | |
COUNT(user_id) AS events, | |
COUNT(DISTINCT user_id) AS users | |
FROM audio_event | |
GROUP BY episode |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment