Skip to content

3051. Find Candidates for Data Scientist Position 👍

1
2
3
4
5
6
SELECT candidate_id
FROM Candidates
WHERE skill IN ('Python', 'Tableau', 'PostgreSQL')
GROUP BY 1
HAVING COUNT(skill) = 3
ORDER BY 1;