IT/DB
[DB] 연산자 종류
비교연산자 = 같다 > 보다 크다 = 보다 크거나 같다 = 10000; //()를 사용하여 우선순위 정함 select employee_id, last_name, job_id, salary from employees where job_id like '%MAN%' or job_id like '%REP%' and salary >= 10000; //()가 없으면 %REP%만 salary 조건이 적용되고 '%MAN%'은 salary조건이 적용안됨 NOT 연산자 - 조건을 부정할 때 사용하는 WHERE절 키워드 select last_name, salary, job_id, commission_pct from employees where job_id not in ('AC_ACCOUNT', 'AD_VP'); //job_..