mysql DISTINCT去重,返回去重后的所有字段
Posted 双斜杠少年
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mysql DISTINCT去重,返回去重后的所有字段相关的知识,希望对你有一定的参考价值。
一天一个mysql小技巧
问题:distinct 对某一字段去重,返回记录所有字段值,但是记录其它字段也有重复值,导致无法返回。
描述:
在使用mysql时,有时需要查询出某个字段不重复的记录,distinct 关键字可以过滤掉多余的重复记录只保留一条,但往往只用它来返回不重复记录的条数,而不是用它来返回所有值。其原因是 distinct只能返回它的目标字段,而无法返回其它字段。用distinct不能解决的话,我只有用二重循环查询来解决,而 这样对于一个数据量非常大的站来说,无疑是会直接影响到效率的。
例如:
table
id name
1 a
2 b
3 c
4 c
5 b
例如 :
select distinct name, id from table
结果会是:
id name
1 a
2 b
3 c
4 c
5 b
解决方法1:
取其他字段的最大值max()或者最小值min(), distinct字段注意放前面
select distinct name, min(id) from table group by name
结果
name id
a 1
b 2
c 3
group_concat
当然也可以使用 group_concat 函数,将不重复的其他字段拼接起来
select distinct name,group_concat(id) from table group by name
结果
name id
a 1
b 2,5
c 3,4
解决方法2
select *, count(distinct name) from table group by name
注意:group by 必须放在 order by 和 limit之前,不然会报错
结果:
id name count(distinct name)
1 a 1
2 b 1
3 c 1
参考:
http://www.bubuko.com/infodetail-2509230.html
https://blog.csdn.net/q669239799/article/details/80933866
以上是关于mysql DISTINCT去重,返回去重后的所有字段的主要内容,如果未能解决你的问题,请参考以下文章