MySQL基础学习笔记——distinct、where

distinct关键字

  • distinct用于去除显示结果中的重复数据行。
select distinct 字段1, 字段2,... from 表名;
// 去重是针对(字段1,2,3...)组合显示的去重,不是仅针对字段1
select distinct name, price from price ;

where条件语句

  • 使用where条件查询可以对表中的数据进行筛选,条件成立的记录会出现在结果集中。
select 字段 from 表名 where 条件;
# 简单的例子 id等于1的
select * from price where id=1;
比较运算符
符合=>>=<<=!=<>
意思等于大于大于等于小于小于等于不等于
# 查询 id“大于”3的
select * from price where id>3;
# 查询 id“不大于”20的
select * from price where id<=20;
# 查询 名称“不是”大蒜的
select * from price where name!='大蒜';
逻辑运算符
关键字andornot
意思并且或者
  • 说明:多个判断条件想要作为一个整体,可以结合“()”。
# 查询 除了鸡蛋以外的单价小于10元的
select * from price where name!="鸡蛋" and price<10;
// 查询 单价不在15到20这个范围内的
select * from price where not (price>=15 and price<=20);
// 查询 价格小于10或者价格大于50的
select * from price where price<10 or price>50;
模糊查询
关键字/符号like%_
意思模糊匹配任意多个字符(类似*任意一个字符(类似.
  • 注意:模糊查询的条件需要用引号""''括起来
# 查询 名字中带有“份”的
select * from price where name like "%份%";
# 查询 名字以“彩”开头的
select * from price where name like "彩%";
# 查询 名字只有两个字的
select * from price where name like '__';
范围查询
关键字... between ... and ...in
意思在一个连续的范围内查询(闭区间)在一个非连续的范围内查询
# 查询 id在3到8之间的
select * from price where id between 3 and 8;
# 查询 id不是3到8 并且 价格大于20的
select * from price where not (id between 3 and 8) and price>20;
# 查新 id是5、76、32、11、44、33的
select * from price where id in (5, 76, 32, 11, 44, 33);
空判断
关键字is nullis not null
意思判断为空判断为非空
  • 注意:null不等于空字符串,表示的是没有设置值的意思。
# 查询 价格为空的
select * from price where price is null;
# 查询 价格不为空的
select * from price where price is not null;
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

鬼义虎神

打赏5C币,作者可获得4C币

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值