Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
Top 5% Active Workspaces SQL
00:00
5 left

Top 5% Active Workspaces SQL

MediumSQL · PostgreSQL

Problem

Write a SQL query to find the top 5% of active Airtable workspaces based on weekly active users, partitioned by industry.

Use the activity week from 2025-02-03 through 2025-02-09. Include active workspaces with no activity, treating their weekly active user count as zero.

Output

  1. One row per selected workspace with industry_name, workspace_id, workspace_name, weekly_active_users, and top_5_percent_bucket.
  2. Include only the highest 5% within each industry, using a deterministic workspace ID tie-breaker.
  3. Sort by industry_name, descending weekly_active_users, then workspace_id.

Schema

industries
ColumnTypeDescription
industry_idPKINTUnique industry identifier
industry_nameVARCHAR(100)Industry assigned to a workspace
workspaces
ColumnTypeDescription
workspace_idPKINTUnique Airtable workspace identifier
workspace_nameVARCHAR(150)Airtable workspace name
industry_idINTReference to the workspace industry
is_activeBOOLEANWhether the workspace is currently active
workspace_activity
ColumnTypeDescription
activity_idPKINTUnique activity event identifier
workspace_idINTWorkspace associated with the activity
user_idVARCHAR(50)User who generated the activity event
activity_dateDATEDate of the activity event
Tablesworkspacesindustriesworkspace_activity
Interviewer

Your question is Top 5% Active Workspaces SQL. Start with the requirements and the three 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.