Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

SQL for Active Users

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

Your question is SQL for Active Users. 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

Swiggy wants to measure the share of registered users who were recently active through an order. Using the tables below, write a PostgreSQL query to calculate this percentage as of 2025-02-15.

The 30-day period is inclusive of 2025-01-17 and 2025-02-15.

Requirements

  1. Count every registered user in users as the denominator, including users with no orders.
  2. Count each user only once if they placed at least one order during the 30-day period.
  3. Return the total user count, active user count, and active-user percentage rounded to two decimal places.

Schema

users
ColumnTypeDescription
user_idPKINTEGERUnique Swiggy user identifier
user_nameVARCHAR(100)User display name
cityVARCHAR(50)User's registered city
orders
ColumnTypeDescription
order_idPKINTEGERUnique order identifier
user_idINTEGERUser who placed the order
order_dateDATEDate the order was placed
order_statusVARCHAR(20)Current order status
Tablesusersorders
Your solutionPostgreSQL
You need to log in / sign up to run or submit.
Run a query to see results