Your question is Top N Records in SQL. Start with the requirements and the one table 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.
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.
status is Open.requisition_id ascending.| Column | Type | Description |
|---|---|---|
| requisition_idPK | INT | Unique requisition identifier |
| role_title | VARCHAR(120) | Position title |
| status | VARCHAR(20) | Current requisition status |
| priority_score | INT | Numeric score used to prioritize recruiting work |