Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

Monthly Resmed Campaign Click Summary

EasySQL · PostgreSQL00:00
Practice interviewer
In session
5 left
00:00

Your question is Monthly Resmed Campaign Click Summary. Start with the requirements and the one table on the right.

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.

Problem

You are given a table of daily marketing campaign activity exported from Resmed web analytics reporting. Write a SQL query to return total clicks by month for campaigns where the traffic source is Resmed.com and the campaign name is not null. Show the month in YYYY-MM format and sort the results by month ascending.

Schema

resmed_campaign_activity
ColumnTypeDescription
activity_idPKINTUnique row identifier
activity_dateDATEDate of the campaign activity
campaign_nameVARCHAR(100)Campaign name tracked in analytics
traffic_sourceVARCHAR(50)Source surface for the visit
clicksINTNumber of clicks recorded that day
impressionsINTNumber of impressions recorded that day
Tablesresmed_campaign_activity
Your solutionPostgreSQL
You need to log in / sign up to run or submit.
Run a query to see results