select distinct关键字用法示例
时间:2015-02-22 15:17 来源:linux.it.net.cn 作者:IT
有关sql select distinct语句的用法,distinct只能返回它的目标字段,而无法返回其它字段,尝试了group_concat函数与count函数的用法。
如何在mysql数据库中查询出某个字段不重复的记录,更多的使用distinct关键字过滤掉多余的重复记录只保留一条,只用它来返回不重复记录的条数,很少用它来返回不重记录的所有值。
distinct只能返回它的目标字段,而无法返回其它字段。
用distinct不能解决的话,只有用二重循环查询来解决,而这样对于一个数据量非常大的站来说,无疑是会直接影响到效率的。
例子:
table
id name
1 a
2 b
3 c
4 c
5 b
用一条语句查询得到name不重复的所有数据,则要使用distinct去掉多余的重复记录。
select distinct name from table
执行结果:
name
a
b
c
如果要得到的是id值,修改下查询语句:
select distinct name, id from table
结果:
id name
1 a
2 b
3 c
4 c
5 b
distinct同时作用了两个字段,需要id与name都相同的才会被排除。
再次修改查询语句:
select id, distinct name from table
除了错误信息你什么也得不到,distinct必须放在开头。难到不能把distinct放到where条件里?能,照样报错。
在mysql手册里找到一个用法,用group_concat(distinct name)配合group by name实现了需要的功能
group_concat函数是4.1支持。
试过了group_concat函数,再试下count函数。
sql语句:
select *, count(distinct name) from table group by name
结果:
id name count(distinct name)
1 a 1
2 b 1
3 c 1
最后一项是多余的。
group by 必须放在 order by 和 limit之前,不然会报错。
(责任编辑:IT)
有关sql select distinct语句的用法,distinct只能返回它的目标字段,而无法返回其它字段,尝试了group_concat函数与count函数的用法。 如何在mysql数据库中查询出某个字段不重复的记录,更多的使用distinct关键字过滤掉多余的重复记录只保留一条,只用它来返回不重复记录的条数,很少用它来返回不重记录的所有值。 distinct只能返回它的目标字段,而无法返回其它字段。 用distinct不能解决的话,只有用二重循环查询来解决,而这样对于一个数据量非常大的站来说,无疑是会直接影响到效率的。
例子:
用一条语句查询得到name不重复的所有数据,则要使用distinct去掉多余的重复记录。
select distinct name from table
执行结果:
如果要得到的是id值,修改下查询语句:
select distinct name, id from table
结果:
再次修改查询语句:
select id, distinct name from table
除了错误信息你什么也得不到,distinct必须放在开头。难到不能把distinct放到where条件里?能,照样报错。
在mysql手册里找到一个用法,用group_concat(distinct name)配合group by name实现了需要的功能 试过了group_concat函数,再试下count函数。
sql语句:
select *, count(distinct name) from table group by name
结果: group by 必须放在 order by 和 limit之前,不然会报错。 (责任编辑:IT) |