Hello Experts,
May I know that how can i delete duplicate records without using rowid and how many ways to find duplicate records?
Kindly share your valuable views here.
Thanks in advance.
Updated May 18, 2018
Hello Experts,
May I know that how can i delete duplicate records without using rowid and how many ways to find duplicate records?
Kindly share your valuable views here.
Thanks in advance.
Comments
You can use this query also : delete from <table1> where <key column> in (select <key column> from <table1> group by <key column> having count(*) >1)