[프로그래머스 SQL] 23. 조건에 맞는 개발자 찾기

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

문제

notion image
notion image

내가 푼 코드

SELECT DISTINCT(ID), EMAIL, FIRST_NAME, LAST_NAME FROM SKILLCODES S JOIN DEVELOPERS D ON S.CODE & D.SKILL_CODE WHERE (NAME = 'Python' OR NAME = 'C#') ORDER BY ID
Share article

gunwoo