如何识别重复行中的不同值

时间:2017-04-05 23:20:09

标签: sql sqldf

考虑到我有下表:

enter image description here

我如何进行查询以确定相同的代码(可能存在重复项,根本没有问题)是否有不同的

示例:

Code   Sex
1900   Male
1900   Female

我在试问之前尝试做一些研究,但无法找到解决方案。

由于

2 个答案:

答案 0 :(得分:1)

这是一种方法:

select code
from t
group by code
having min(sex) <> max(sex);

答案 1 :(得分:0)

如果我理解你想要的是:

Select code, 
count(distinct sex) as val 
from table 
group by code 
having val>1