Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
SQL Join for Monthly Spend
00:00
5 left

SQL Join for Monthly Spend

MediumSQL · PostgreSQL

Problem

Write a SQL query to join a user activity table with a billing table to calculate the average monthly spend per active Google Cloud customer.

Treat a customer as active in a month when the activity table contains activity for that customer during that month. Customers with no billing record in an active month should contribute zero spend.

Output

  1. One row per month, with month, active_customer_count, and average_monthly_spend.
  2. Include all months with activity, order chronologically, and round average spend to two decimal places.

Schema

user_activity
ColumnTypeDescription
activity_idPKINTUnique activity event identifier
customer_idINTGoogle Cloud customer identifier
activity_dateDATEDate of customer activity
activity_typeVARCHAR(50)Type of activity recorded
billing
ColumnTypeDescription
billing_idPKINTUnique billing record identifier
customer_idINTGoogle Cloud customer identifier
billing_dateDATEDate the charge was recorded
amountNUMERIC(12,2)Charge amount in USD
Tablesuser_activitybilling
Interviewer

Your question is SQL Join for Monthly Spend. 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.