Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
CTR by Country and Device
00:00
5 left

CTR by Country and Device

MediumSQL · PostgreSQL

Problem

Given a table of ad impressions and a table of user clicks, write a query to find the click-through rate (CTR) grouped by country and device type on Snapchat.

CTR is the percentage of distinct impressions that received at least one click. Include impression groups with no clicks, and do not count duplicate clicks on the same impression more than once.

Output

  1. One row per country and device type, with country, device_type, impression_count, clicked_impression_count, and ctr_percent.
  2. Include groups with zero clicks. Ignore click records with a NULL or unmatched impression ID.
  3. Sort by country and device type ascending.

Schema

ad_impressions
ColumnTypeDescription
impression_idPKINTEGERUnique identifier for an ad impression
countryVARCHAR(100)Country where the impression occurred
device_typeVARCHAR(50)Device category for the impression
user_clicks
ColumnTypeDescription
click_idPKINTEGERUnique identifier for a click event
impression_idINTEGERImpression associated with the click, when available
Tablesad_impressionsuser_clicks
Interviewer

Your question is CTR by Country and Device. 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.