Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

SQL for Sales and Logs

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

Your question is SQL for Sales and Logs. Start with the requirements and the two tables 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

Shopify wants a monthly view of merchant sales and admin engagement. Write a PostgreSQL query that combines Shopify sales records with admin activity logs without allowing multiple log rows to duplicate sales.

Requirements

  1. Include each merchant and month with at least one completed sale during Q1 2025.
  2. Return completed gross sales, completed order count, and distinct admin login sessions.
  3. Preserve merchants with no matching login activity by returning zero sessions and label them Not engaged; label merchants with at least one session Engaged.
  4. Sort results chronologically by month, then by merchant ID.

Schema

sales
ColumnTypeDescription
sale_idPKINTUnique sale identifier
merchant_idINTShopify merchant identifier
occurred_atTIMESTAMPTimestamp when the sale occurred
amountDECIMAL(12,2)Sale amount in the merchant billing currency
statusVARCHAR(20)Sale processing status
merchant_logs
ColumnTypeDescription
log_idPKINTUnique log identifier
merchant_idINTShopify merchant identifier
logged_atTIMESTAMPTimestamp when the event was logged
event_typeVARCHAR(30)Type of merchant activity event
session_idVARCHAR(40)Browser or application session identifier
Tablessalesmerchant_logs
Your solutionPostgreSQL
You need to log in / sign up to run or submit.
Run a query to see results