Learning (Jinseung Yu)
/
과제 및 개인 공부
/
SQL 공부
/
Function
/
IN
Search
IN
select
last_name, job_id from employees where not job_id IN
(
'IT_PROG'
,
'ST_CLERK'
,
'SA_REP'
)
;
# job_id가 'IT_PROG', 'ST_CLERK', 'SA_REP' 중에 있지 않으면
Bash
복사