MySQL中distinct的使⽤⽅法
本⽂的环境是Windows 10,MySQL版本是5.7.12-log
⼀、基本使⽤
distinct⼀般是⽤来去除查询结果中的重复记录的,⽽且这个语句在lect、inrt、delete和update中只可以在lect中使⽤,具体的语法如下:
lect distinct 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 只对⼀列操作
这种操作是最常见和简单的,如下:
lect distinct country from person
结果如下:
1.2 对多列进⾏操作
激发性欲lect 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 rver version for the right syntax to u near ‘DISTINCT province from person’ at line 1
1.3 针对NULL的处理
从1.1和1.2中都可以看出,distinct对NULL是不进⾏过滤的,即返回的结果中是包含NULL值的。
1.4 与ALL不能同时使⽤
默认情况下,查询时返回所有的结果,此时使⽤的就是all语句,这是与distinct相对应的,如下:
最美旅行
lect all country, province from person
结果如下:
1.5 与distinctrow同义
lect distinctrow expression[,] from tables [where conditions];
这个语句与distinct的作⽤是相同的。
1.6 对*的处理
读者杂志>作业部落*代表整列,使⽤distinct对*操作
sql
lect DISTINCT * from person
相当于
lect DISTINCT id, `name`, country, province, city from person;