小粥重学mysql(4)之DCL(数据库查询语言)----条件查询

小粥重学mysql(4)之DCL(数据库查询语言)----条件查询

运算符

比较运算符说明
>、<、<=、>=、=、<><>在SQL中表示不等于,mysql中可使用!=,但没有==
between…and在…范围内,between 100 and 200 相当于100到200之间,包头包尾
in(集合)集合表示多个值,逗号分割
like ‘张%’模糊查询 _(下划线):单个任意字符;%:多个任意字符
is null查询某列为null的值,不能使用=null
逻辑运算符说明
and 或 &&与(&&不通用)
or 或 ||
not 或 !
# 查询年龄大于等于20 岁

select * from stu where age >=20
# 查询年龄不等于20岁

select * from stu where age != 20
select * from stu where age <> 20
# 查询年龄大于等于20,小于等于30

select * from stu where age>=20 and age <=30

select * from stu where age between 20 and 30
# 查询年龄22岁,19岁,25岁的学生

select * from stu where age = 22 or age = 19 or age = 25

select * from stu where age in (22,19,25)
# 查询英语成绩为null

select * from stu where english is null
# 查询英语成绩为null

select * from stu where english is not null
# 查询姓马的同学有哪些?

select * from stu where name like '马%'
# 查询姓名第二个字符是 化 的人

select * from stu where name like "_化%"
# 查询姓名是三个字的人

select * from stu where name like "___"  -- 三个下划线
# 查询姓名中包含马的人

select * from stu where name like "%马%"
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值