从表中获取相同字段的重复数据,并比较同一表的其他字段

时间:2012-08-07 05:14:55

标签: php mysql

enter image description here

我想从不同的bomid(1& 2)获得重复的partid,如下图所示。

我已经尝试过join和having子句,但它不起作用。

欲望输出

---------
partid
----------
31

1 个答案:

答案 0 :(得分:3)

试试这个:

SELECT  partID
FROM    myTable
GROUP BY partID
HAVING  COUNT(partID) > 1

<强> SEE HERE for a little demo (though different fieldnames)