Sunday, September 28, 2014

Oracle : find duplicate row and total duplicate




select column_name, count(column_name)
from table
group by column_name
having count (column_name) > 1;

No comments:

Post a Comment