Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
Top N Records in SQL
00:00
5 left

Top N Records in SQL

EasySQL · PostgreSQL

Problem

The TEKsystems staffing operations dashboard needs a short list of the highest-priority open requisitions for recruiter review. Write a PostgreSQL query to return the top 3 open requisitions based on their priority score.

Requirements

  1. Include only rows where status is Open.
  2. Return the requisition ID, role title, and priority score, ordered from highest to lowest priority. Return no more than three rows. For equal scores, sort by requisition_id ascending.

Schema

job_requisitions
ColumnTypeDescription
requisition_idPKINTUnique requisition identifier
role_titleVARCHAR(120)Position title
statusVARCHAR(20)Current requisition status
priority_scoreINTNumeric score used to prioritize recruiting work
Tablesjob_requisitions
Interviewer

Your question is Top N Records in SQL. Start with the requirements and the one table 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.