Created
April 25, 2022 10:11
-
-
Save morsapaes/52fd7f09ede102b4ad270b8205160d59 to your computer and use it in GitHub Desktop.
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
CREATE MATERIALIZED VIEW agg_tweets AS | |
SELECT COUNT(tweet) AS total_tweets, | |
username | |
FROM twitter_tweets_enriched | |
GROUP BY username; | |
CREATE MATERIALIZED VIEW agg_users AS | |
SELECT COUNT(twitter_id) AS total_tweets | |
FROM twitter_tweets | |
GROUP BY twitter_id; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment