+ 2
How do we find duplicate values in the table in MySQL ?
4 Respostas
+ 5
What do you really want to achieve? If you want to count the duplicate values, you can try experimenting with the GROUP BY clause selecting/projecting the COUNT of that column. If you want to cluster the duplicate values, you can do it with ORDER BY clause.
+ 4
SELECT * FROM tablename GROUP BY fieldset
+ 1
I think GROUP BY clause followed by HAVING would work. Well thanks for the answer Lambert.
0
Yes you are right Aqhil you are expertise in that