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
복사