在多个字段组中查找字段

时间:2014-11-25 15:45:53

标签: sql oracle

我有一个包含列的表:

column1|column2|column3|column4|Column5
A,B,1,2,a
A,B,3,4,b
C,D,1,2,a

我需要检查字段组column1|column2在字段column3|column4上是否有多个组合

示例:

A,B 2

(因为A,B组合,我有两个组合column3 | column4,即1,2和3,4)

C,D 1

2 个答案:

答案 0 :(得分:0)

在正常情况下,您只需:

select col1, col2, count(*)
from table t
group by col1, col2
having count(*) > 1;

您可以在第3列和第4列中看到 distinct 值。某些数据库支持:

select col1, col2, count(distinct col3, col4)
from table t
group by col1, col2
having count(distinct col3, col4) > 1;

在其他数据库中,连接值最简单:

select col1, col2, count(distinct concat(col3, ':', col4))
from table t
group by col1, col2
having count(distinct concat(col3, ':', col4)) > 1;

注意:虽然concat()函数是标准函数,但所有数据库都不支持它。

答案 1 :(得分:0)

获取column3和column4组合的明确计数,如下所示

select column1, column2, count (distinct column3 || '-' || column4)
from table
group by column1, column2
having  count (distinct column3 || '-' || column4) > 1;

||是Oracle的串联运算符。在其他数据库中,您将拥有其他连接运算符。例如。 concat。分隔符-将确保12,3和1,23对不会产生相同的组合。