Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
Top Workspaces Per Org
00:00
5 left

Top Workspaces Per Org

MediumSQL · PostgreSQL

Problem

Write a SQL query using window functions to find the top three most active workspaces for each organization over the last 30 days.

Use the organizations, workspaces, and workspace_activity tables. Activity is measured by the number of activity records. Include only workspaces with activity during the period.

Output

  1. One row per qualifying workspace, with organization_id, organization_name, workspace_id, workspace_name, activity_count, and activity_rank.
  2. Return at most three workspaces per organization, ordered by organization, rank, and workspace ID. Break equal activity counts by ascending workspace_id.

Schema

organizations
ColumnTypeDescription
organization_idPKINTUnique organization identifier
organization_nameVARCHAR(100)Organization display name
workspaces
ColumnTypeDescription
workspace_idPKINTUnique workspace identifier
organization_idINTOwning organization identifier
workspace_nameVARCHAR(100)Workspace display name
workspace_activity
ColumnTypeDescription
activity_idPKINTUnique activity event identifier
workspace_idINTWorkspace associated with the event
activity_atTIMESTAMPTimestamp when the activity occurred
action_typeVARCHAR(50)Type of workspace activity
Tablesorganizationsworkspacesworkspace_activity
Interviewer

Your question is Top Workspaces Per Org. 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.