Mysql选择查找重复项

时间:2010-08-17 09:58:47

标签: php sql mysql select

有人可以帮我编写一个sql select来执行任务。 所以问题是我们有一张桌子并且有一些重复,所以我需要找到名称,街道和房子相同的地方,并以某种方式分组。

我差不多this的情况,但区别在于我想将它们分组以找出什么是重复的。

提前致谢。

2 个答案:

答案 0 :(得分:9)

假设您有一个id字段,该字段将与每个重复行的GROUP_CONCAT()函数分组:

SELECT    t1.name, t1.street, t1.house, GROUP_CONCAT(DISTINCT t1.id) dupes
FROM      your_table t1
JOIN      your_table t2 ON (t2.name = t1.name AND 
                            t2.street = t1.street AND 
                            t2.house = t1.house)
GROUP BY  t1.name, t1.street, t1.house
HAVING    COUNT(*) > 1;

测试用例:

CREATE TABLE your_table (
   id int, 
   name varchar(10), 
   street varchar(10), 
   house varchar(10)
);

INSERT INTO your_table VALUES (1, 'a', 'b', 'c');
INSERT INTO your_table VALUES (2, 'a', '1', 'c');
INSERT INTO your_table VALUES (3, 'a', '2', '3');
INSERT INTO your_table VALUES (4, 'a', 'b', 'c');
INSERT INTO your_table VALUES (5, 'a', 'b', 'c');
INSERT INTO your_table VALUES (6, 'c', 'd', 'e');
INSERT INTO your_table VALUES (7, 'c', 'd', 'e');

结果:

+------+--------+-------+-------+
| name | street | house | dupes |
+------+--------+-------+-------+
| a    | b      | c     | 1,5,4 |
| c    | d      | e     | 6,7   |
+------+--------+-------+-------+
2 rows in set (0.03 sec)

答案 1 :(得分:2)

要获得重复项,只需在表格中使用自联接:

select t1.id, t2.id, t1.name, t1.street, t1.house
from table t1
inner join table t2 on t1.name=t2.name and t1.street=t2.street and t1.house=t2.house
where t1.id < t2.id

t1.id&lt; t2.id将确保每个副本只出现一次。