- IN是判斷是否有和清單內一致項目條件
- expr1 [NOT] IN ({subquery | expr2 [,expr3...]})
expr1:欄位名稱
subquery:子查詢
expr2,expr3:要比較的值IN使用
- SQL語法示範
select salary from emp where salary in (300,500);(尋找薪水為300和500)
select salary from emp where salary not in (300,500);(尋找薪水不為300和500)