MySQL中distinct的使用方法
程序员文章站
2022-05-04 11:23:18
一、基本使用 distinct一般是用来去除查询结果中的重复记录的,而且这个语句在 、`insert delete update`中只可以在select中使用,具体的语法如下: 这里的expressions可以是多个字段。本文的所有操作都是针对如下示例表的: sql CREATE TABLE ( i ......
一、基本使用
distinct一般是用来去除查询结果中的重复记录的,而且这个语句在select
、insert
、delete
和update
中只可以在select中使用,具体的语法如下:
select distinct expression[,expression...] from tables [where conditions];
这里的expressions可以是多个字段。本文的所有操作都是针对如下示例表的:
create table `person` ( `id` int(11) not null auto_increment , `name` varchar(30) null default null , `country` varchar(50) null default null , `province` varchar(30) null default null , `city` varchar(30) null default null , primary key (`id`) )engine=innodb;
1.1 只对一列操作
这种操作是最常见和简单的,如下:
select distinct country from person
结果如下:
1.2 对多列进行操作
select distinct country, province from person
结果如下:
从上例中可以发现,当distinct
应用到多个字段的时候,其应用的范围是其后面的所有字段,而不只是紧挨着它的一个字段,而且distinct
只能放到所有字段的前面,如下语句是错误的:
select country, distinct province from person; // 该语句是错误的
抛出错误如下:
[err] 1064 - you have an error in your sql syntax; check the manual that corresponds to your mysql server version for the right syntax to use near ‘distinct province from person’ at line 1
1.3 针对null
的处理
从1.1和1.2中都可以看出,distinct对null是不进行过滤的,即返回的结果中是包含null值的。
1.4 与all
不能同时使用
默认情况下,查询时返回所有的结果,此时使用的就是all语句,这是与distinct相对应的,如下:
select all country, province from person
结果如下:
1.5 与distinctrow
同义
select distinctrow expression[,expression...] from tables [where conditions];
这个语句与distinct的作用是相同的。
1.6 对*
的处理
*
代表整列,使用distinct对*操作
select distinct * from person
相当于
select distinct id, `name`, country, province, city from person;
文章转自:https://blog.csdn.net/lmy86263/article/details/73612020