Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
Running Sign-Up Total
00:00
5 left

Running Sign-Up Total

MediumSQL · PostgreSQL

Problem

Write a query that calculates the running total of sign-ups per day for the current month.

Assume sign-up timestamps are stored in signup_events. Include dates from the first day of the current month through today, excluding future dates and records without a timestamp.

Output

  1. One row per date with at least one sign-up
  2. Columns: signup_date, signup_count, and running_total
  3. Sort by signup_date ascending

Schema

signup_events
ColumnTypeDescription
signup_idPKINTUnique identifier for the sign-up event
emailVARCHAR(255)Email address submitted during sign-up
signup_atTIMESTAMPTimestamp when the sign-up occurred
Tablessignup_events
Interviewer

Your question is Running Sign-Up Total. Start with the requirements and the one table 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.