알고리즘/SQL

조건에 맞는 개발자 찾기

베리영young 2024. 9. 19. 18:22
-- 코드를 작성해주세요
select ID, EMAIL, FIRST_NAME, LAST_NAME
from DEVELOPERS
where SKILL_CODE  & (
                      select sum(CODE)
                      from SKILLCODES 
                       where NAME = 'Python' or NAME = 'C#'
                    ) > 0
order by ID

!