时间:2021-05-24
MySQL关键字Distinct用法介绍
DDL
Prepare SQL:
create table test(id bigint not null primary key auto_increment, name varchar(10) not null, phone varchar(10) not null, email varchar(30) not null)engine=innodb;Prepare Data:
insert into test(name, phone, email)values('alibaba','0517','alibaba@alibaba.com'); insert into test(name, phone, email)values('alibaba','0517','alibaba@alibaba.com'); insert into test(name, phone, email)values('baidu','010','baidu@baidu.com'); insert into test(name, phone, email)values('tencent','0755','tencent@tencent.com'); insert into test(name, phone, email)values('vipshop','020','vipshop@vipshop.com'); insert into test(name, phone, email)values('ctrip','021','ctrip@ctrip.com'); insert into test(name, phone, email)values('suning','025','suning@suning.com');查询数据如下图所示:
第一种情况,使用Distinct关键字,查询单列数据,如下图所示:
结果:对 name 字段进行去重处理,符合预期期望,确实筛选掉了重复的字段值alibaba;
第二种情况,使用Distinct关键字(在前),查询多列数据,如下图所示:
结果:对 name 字段进行去重处理,结果不符合预期期望,没有筛选掉重复的字段值alibaba;
第二种情况,使用Distinct关键字(在后),查询多列数据,如下图所示:
结果:对 name 字段进行去重处理,结果不符合预期期望,抛出SQL异常,错误码:1064;
解决办法:
不要用子查询,用分组来解决:
总结: SQL查询能用一条语句解决的尽量不要增加SQL的复杂度,特别是子查询!!!
以上就是关于MySQL关键字Distinct用法的讲解,如有疑问,请留言或者到本站设讨论,感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
mysql查询的控制语句字段去重**关键字:distinct**语法:selectdistinct字段名from表名;案例:对部门进行去重Selectdisti
首先对于MySQL的DISTINCT的关键字的一些用法:1.在count不重复的记录的时候能用到,比如SELECTCOUNT(DISTINCTid)FROMta
上篇文章给大家介绍了Mysql带And关键字的多条件查询语句,下面给大家介绍MySql带OR关键字的多条件查询语句,感兴趣的朋友可以一起学习。MySQL带OR关
mysql去重方法一:在使用MySQL时,有时需要查询出某个字段不重复的记录,虽然mysql提供有distinct这个关键字来过滤掉多余的重复记录只保留一条,但
在使用mysql时,有时需要查询出某个字段不重复的记录,虽然mysql提供有distinct这个关键字来过滤掉多余的重复记录只保留一条,但往往只用它来返回不重复