MySQL在基础查询基础上升级到条件查询

条件查询

语法

sql 复制代码
select
查询列表
from
表名称
where
筛选条件

1. 按照条件表达式来筛选

sql 复制代码
条件运算符: > , < , = , != / <>(MYSQL特有的不等号) , >= , <=

2.按照逻辑表达式筛选

sql 复制代码
逻辑运算符:支持java的写法(&& , || , ! ), 但推荐使用mysql自己的(and , not , or)

3.模糊查询

sql 复制代码
like , between...and , in , is null

4.看条件表达式

案例:查询员工工资大于1200的员工有哪些:

sql 复制代码
select * from employees where salary > 12000;

案例:查询部门编号不等于90号的员工名和部门编号:

sql 复制代码
select concat(last_name,first_name) as 姓名 , department_id
from employees where department_id <> 90;

5.逻辑表达式

sql 复制代码
逻辑运算符主要作用:链接表达式
&&和and : 全式true结果才式true;
||和or: 只要有一个true结构就式true;
!和not: 取反;

案例:工资在10000到20000之间到员工名,工资和奖金

sql 复制代码
select last_name,salary,commission_pct
from employees where salary>=10000 and salary<=20000;
sql 复制代码
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;
相关推荐
PGCCC2 分钟前
【PGCCC】Postgresql BRIN 索引原理
数据库·postgresql
Ljw...8 分钟前
用户管理(MySQL)
数据库·mysql·用户管理
尘浮生3 小时前
Java项目实战II基于微信小程序的南宁周边乡村游平台(开发文档+数据库+源码)
java·开发语言·数据库·spring boot·微信小程序·小程序·maven
东阳马生架构7 小时前
MySQL底层概述—1.InnoDB内存结构
java·数据库·mysql
standxy8 小时前
通过轻易云平台实现聚水潭数据高效集成到MySQL的技术方案
android·数据库·mysql
itwangyang5208 小时前
2025 - 科研神器 - 批量处理 PDF、SVG、PNG 和 JPG 文件,将它们转换为彩色 TIFF 文件,并保存到指定的 tiff 文件夹中
数据库·pdf
痞老板A小安装C48 小时前
redis的大key和热key问题解决方案
数据库·redis·bootstrap
feilieren8 小时前
DataGrip 连接 Redis、TongRDS
数据库·redis·缓存
苹果酱05678 小时前
windows安装redis, 修改自启动的redis服务的密码
java·开发语言·spring boot·mysql·中间件
液态不合群8 小时前
Redis中常见的数据类型及其应用场景
数据库·redis·wpf