SQL Problem 1 — Matching Skills — Easy Solution
Running notes Tables we have - candidate | skill Question find candidates proficient in Python, Tableau, and PostgreSQL (ALL 3 SKILLS) Sort the output by candidate ID in ascending order Solution SELECT * FROM candidates; This has given me an overall view of the database, so i know how the dataset looks like SELECT * FROM candidates WHERE skill IN ('Python','Tableau','PostgreSQL'); This is now showing me all the candidates that have any one of these skills

Running notes
Tables we have -
candidate | skill
Question
- find candidates proficient in Python, Tableau, and PostgreSQL (ALL 3 SKILLS)
- Sort the output by candidate ID in ascending order
Solution
SELECT *
FROM candidates;
This has given me an overall view of the database, so i know how the dataset looks like
SELECT *
FROM candidates
WHERE skill IN ('Python','Tableau','PostgreSQL');
This is now showing me all the candidates that have any one of these skills