Mysql where not

 

1. 表格内容:

select * from emp_info;

 

Mysql where not

 

 

2. 查询 salary 不大于 4000  的 员工信息

select * from emp_info a where not a.salary > 4000 ;

结果:

Mysql where not

 

 

3. 查询  salary 不大于 4000,  且 kpi 为 A 的员工信息

select * from emp_info a where (not a.salary > 4000) and a.kpi = A ;

 

Mysql where not

 

 

4. 查询  salary 不大于 4000且 kpi 不为 A  的员工信息

select * from emp_info a where not (a.salary > 4000 and a.kpi = A) ;

 

Mysql where not

 

Mysql where not

上一篇:树形结构,循环显示出来uniapp(两种方法)


下一篇:Oracle DBA-01_Oracle 11G R2 for Solaris 10(Spac)安装实施报告