Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
Cumulative Comments by User
00:00
5 left

Cumulative Comments by User

HardSQL · PostgreSQL

Problem

Find the cumulative number of comments written by each user over time, handling edge cases where users have days with zero activity.

Use the users and comments tables. Consider the full date range present in comments, and include every user on every date in that range, including users with no comments.

Output

  1. One row per user and calendar date, with user_id, username, activity_date, daily_comments, and cumulative_comments.
  2. Include zero-activity days and users with no comments.
  3. Order by user_id, then activity_date ascending.

Schema

users
ColumnTypeDescription
user_idPKINTUnique Reddit user identifier
usernameVARCHAR(50)Reddit username
comments
ColumnTypeDescription
comment_idPKINTUnique comment identifier
user_idINTUser who authored the comment
comment_dateDATECalendar date when the comment was written
bodyTEXTComment text
Tablesuserscomments
Interviewer

Your question is Cumulative Comments by User. Start with the requirements and the two tables in the Question tab.

Run and submit as often as you like. When you're ready, talk me through your approach or go straight to the code.

You need to log in / sign up to run or submit.
CodePostgreSQL
You need to log in / sign up to run or submit.Ln 1
Run your query to see results here.