码迷,mamicode.com
首页 > 其他好文 > 详细

distinct 多列详解

时间:2017-09-30 11:33:01      阅读:314      评论:0      收藏:0      [点我收藏+]

标签:str   pre   col   注意   标识   需求   问题   结果   rom   

1.distinct单列

select distinct(a) from tableA;

2.distinct多列

select distinct a,b,c from tableA;

注意此时是将a,b,c三列所有不同的组合全部列出来,而不仅仅只是distinct a 
相当于以下语句:

 select a,b,c from tableA group by a,b,c

3.另外一种的distinct多列

其实这篇文章的最初需求如下: 
想分别查某一张表的几个字段的distinct值

select distinct a from tableA;
select distinct b from tableA;
select distinct c from tableA;

这样是可以达到目的的。但是这样要写三条语句,不爽,想着用一条语句达到目的。 
思考了一会,想到用union来解决这个问题。

select distinct(a) ||  a from tableA
union all
select distinct(b) ||  b from tableA
union all
select distinct(c) ||  c from tableA

这样就达到了一条语句查询出所有结果的目的。后面拼接的字符串是为了标识这个值属于哪个字段。

distinct 多列详解

标签:str   pre   col   注意   标识   需求   问题   结果   rom   

原文地址:http://www.cnblogs.com/henuyuxiang/p/7613848.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!