How to Find Duplicate Values in MySql?

How to Find Duplicate Values in MySql?


Syntax:

SELECT id, COUNT(*) c FROM table_name GROUP BY id HAVING c > 1;


Comments

Popular posts from this blog

How do i Increase the capacity of the Eclipse Output console?

An internal error occurred during: "Building workspace". Java heap space

How to convert the Math Number to Words in Java?