1.基本用法
distinct用于筛选唯一值,可以作用于单个列或者多个列。作用于单个列时有以下几个注意点:
- distinct必须放在所有指定字段名之前,不允许
select <name1>, distinct <name2> from ...
- distinct作用于多个列,结果按照指定的多个列的值得组合进行筛选
2.和count一起用
可以使用
select count(distinct name) from ....
因为count是不能统计多个字段的,因此下面的语句不能执行:
select count(distinct name1, name2) from ....
应该写成嵌套查询的形式:
select count(*) from (select distinct name1, name2 from...)
3.和order by一起用
distinct的执行顺序在order by 之前
,因此两者同时出现时,先执行distinct产生只包含唯一值的临时表,再对临时表使用order by。
如果order by中的字段和distinct后面的字段名不相同,则语句会出错,因为结果只含有distinct后的唯一字段的值,应在distinct后的字段名中包含order by的字段。
版权声明:本文为qq_36302506原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。