[SQL 문제 풀이] Python 개발자 찾기

Stupefyee's avatar
Nov 22, 2024
[SQL 문제 풀이] Python 개발자 찾기
notion image
notion image

내가 작성한 쿼리

💡
SELECT id, email, FIRST_NAME,LAST_NAME FROM DEVELOPER_INFOS WHERE SKILL_1 = 'Python' OR SKILL_2 = 'Python' OR SKILL_3 = 'Python' ORDER BY id ASC;
Share article

stupefyee