Find and display duplicate records in MySQL?
Answers
Answered by
0
The key is to rewrite this query so that it can be used as a subquery.
SELECT firstname,
lastname,
list.address
FROM list
INNER JOIN (SELECT address
FROM list
GROUP BY address
HAVING COUNT(id) > 1) dup
ON list.address = dup.address
Similar questions
Science,
6 months ago
Math,
6 months ago
India Languages,
6 months ago
Computer Science,
1 year ago
Math,
1 year ago
Science,
1 year ago
Hindi,
1 year ago