AnalystPath

Recruiters Who Never Staffed Helix

SQLEasyJunior level~15 min

Problem

A staffing agency tracks recruiters, client firms, and the placements recruiters make.

```
Recruiter
+-----------------+---------+
| Column | Type |
+-----------------+---------+
| recruiter_id | int |
| recruiter_name | varchar |
| base_pay | int |
+-----------------+---------+

ClientFirm
+-----------+---------+
| Column | Type |
+-----------+---------+
| firm_id | int |
| firm_name | varchar |
+-----------+---------+

Placement
+--------------+------+
| Column | Type |
+--------------+------+
| placement_id | int |
| firm_id | int |
| recruiter_id | int |
+--------------+------+
```

Return the `recruiter_name` of every recruiter who has **never** made a placement at the firm named `Helix`. Return the result in any order.

Tables

Example rows — the live problem includes the full dataset.

Recruiter
recruiter_idrecruiter_namebase_pay
1Dana90000
2Omar72000
3Priya81000
ClientFirm
firm_idfirm_name
1Helix
2Vertex
3Quanta
Placement
placement_idfirm_idrecruiter_id
134
245
311

Expected output

Your answer should return 3 rows with the columns recruiter_name.

Starter code (SQL)

SELECT *
FROM Recruiter;

Solve this SQL question free

Write SQL and run it instantly in your browser — even on your phone. No signup needed to try.

Solution & explanation

Create a free account to unlock the optimal solution, a step-by-step explanation, and the hidden test cases that grade your answer.

Sign up free to unlock

Related SQL questions