条件查询
语法
select
查询列表
from
表名称
where
筛选条件
1. 按照条件表达式来筛选
条件运算符: > , < , = , != / <>(MYSQL特有的不等号) , >= , <=
2.按照逻辑表达式筛选
逻辑运算符:支持java的写法(&& , || , ! ), 但推荐使用mysql自己的(and , not , or)
3.模糊查询
like , between...and , in , is null
4.看条件表达式
案例:查询员工工资大于1200的员工有哪些:
select * from employees where salary > 12000;
案例:查询部门编号不等于90号的员工名和部门编号:
select concat(last_name,first_name) as 姓名 , department_id
from employees where department_id <> 90;
5.逻辑表达式
逻辑运算符主要作用:链接表达式
&&和and : 全式true结果才式true;
||和or: 只要有一个true结构就式true;
!和not: 取反;
案例:工资在10000到20000之间到员工名,工资和奖金
select last_name,salary,commission_pct
from employees where salary>=10000 and salary<=20000;
select * from employees where (department_id<90 and department_id>110) or salary>15000;
select * from employees where not(department_id>=90 and department_id<=110) or salary>15000;