1. 表格内容:
select * from emp_info;
2. 查询 salary 不大于 4000 的 员工信息
select * from emp_info a where not a.salary > 4000 ;
结果:
3. 查询 salary 不大于 4000, 且 kpi 为 A 的员工信息
select * from emp_info a where (not a.salary > 4000) and a.kpi = ‘A‘ ;
4. 查询 salary 不大于 4000且 kpi 不为 A 的员工信息
select * from emp_info a where not (a.salary > 4000 and a.kpi = ‘A‘) ;