코딩테스트 연습 > SELECT > Python 개발자 찾기
https://school.programmers.co.kr/learn/courses/30/lessons/276013


where 절에서 각 column에 'Python'이 있는지 확인한다.
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
더 간편한 방법으론
where 절에서 in을 이용하여 'Python'이 있는지 확인한다.
select id, email, first_name, last_name
from developer_infos
where 'Python' in (skill_1,skill_2,skill_3)
order by id asc
where '문자' in (컬럼명)을 통해서 문자가 컬럼에 있는지 조회 가능하다.