distinct 多列详解

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了distinct 多列详解相关的知识,希望对你有一定的参考价值。

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 多列详解的主要内容,如果未能解决你的问题,请参考以下文章

在 laravel 中对多列使用 distinct

多列的 MySQL Select 语句 DISTINCT

hive mysql count distinct 多列

我如何(或我可以)在多列上选择 DISTINCT?

MySQL SELECT DISTINCT 多列

distinct 用法