Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

SQL for Power Users

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

Your question is SQL for Power Users. Start with the requirements and the three 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

How would you write a SQL query to identify power users at Aircall based on call volume and integration usage?

For this exercise, consider a user a power user if they made at least 5 calls and used at least 2 distinct integrations during January 2025. Use the users, calls, and integration_usage tables.

Output

  1. One row per qualifying user.
  2. Columns: user_id, user_name, call_volume, and integration_count.
  3. Include only users meeting both thresholds.
  4. Order by call_volume descending, integration_count descending, then user_id ascending.

Schema

users
ColumnTypeDescription
user_idPKINTUnique Aircall user identifier
user_nameVARCHAR(100)User display name
emailVARCHAR(255)User email address
calls
ColumnTypeDescription
call_idPKINTUnique call identifier
user_idINTUser who handled the call
call_started_atTIMESTAMPCall start timestamp
duration_secondsINTCall duration in seconds
integration_usage
ColumnTypeDescription
usage_idPKINTUnique integration usage event identifier
user_idINTUser associated with the integration event
integration_nameVARCHAR(100)Aircall integration used
used_atTIMESTAMPIntegration usage timestamp
Tablesuserscallsintegration_usage
Your solutionPostgreSQL
You need to log in / sign up to run or submit.
Run a query to see results