Your question is Third Highest Number Query. Start with the requirements and the two 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.
Recro's technical assessment pipeline needs to identify the third highest distinct integer score across submitted assessments. Write a PostgreSQL query that validates submitted scores against registered candidates and reports how many candidates achieved that score.
| Column | Type | Description |
|---|---|---|
| candidate_idPK | INT | Unique candidate identifier |
| candidate_name | VARCHAR(100) | Candidate's full name |
| application_stage | VARCHAR(30) | Current recruitment stage |
| Column | Type | Description |
|---|---|---|
| assessment_idPK | INT | Unique assessment submission identifier |
| candidate_id | INT | Candidate associated with the submission |
| score | INT | Integer assessment score |