Link
Tables
Question
DEVELOPER_INFOS 테이블에서 Python 스킬을 가진 개발자의 정보를 조회하려 합니다. Python 스킬을 가진 개발자의 ID, 이메일, 이름, 성을 조회하는 SQL 문을 작성해 주세요.
결과는 ID를 기준으로 오름차순 정렬해 주세요.
DataFlow
•
in python
•
order by id asc
Answer
select
id,
email,
first_name,
last_name
from
developer_infos
where
'Python' in (skill_1, skill_2, skill_3)
order by id asc;
SQL
복사
Intention
•
where 중복 혹은 in 절을 사용하여 해당 문제를 해결
