條件查詢之not

(10)not 查詢出薪水不包含1600和薪水不包含3000的員工(第一種寫法) select * from emp where sal <> 1600 and sal <> 3000;   查詢出薪水不包含1600和薪水不包含3000的員工(第二種寫法 select * from emp where not (sal = 1600 or sal = 3000); 查詢出薪水不包含1600和薪水不
相關文章
相關標籤/搜索