[프로그래머스 SQL] 21. Python 개발자 찾기

김건우's avatar
Apr 23, 2025
[프로그래머스 SQL] 21. Python 개발자 찾기

문제

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

gunwoo