Skip to content

Latest commit

 

History

History
46 lines (33 loc) · 942 Bytes

001_histogram_of_tweets.md

File metadata and controls

46 lines (33 loc) · 942 Bytes

SQL Everyday #001

Histogram of Tweets

Site: DataLemur
Difficulty per Site: Easy

Problem

Assume you're given a table Twitter tweet data, write a query to obtain a histogram of tweets posted per user in 2022. Output the tweet count per user as the bucket and the number of Twitter users who fall into that bucket. In other words, group the users by the number of tweets they posted in 2022 and count the number of users in each group. [Full Description]

Submitted Solution

WITH cte AS (
  SELECT
    user_id
    ,COUNT(tweet_id) AS count
  FROM tweets
  WHERE EXTRACT(YEAR FROM tweet_date) = 2022
  GROUP BY user_id
)
SELECT
  count AS tweet_buket
  ,COUNT(useR_id) AS users_num
FROM cte 
GROUP BY count
;

Site Solution

-- TBD

Notes

TODO

NB

TBD

Go to Index
Go to Overview