0
how to remove the duplicate rows without the help of rowid and primary key.
4 Answers
+ 2
what about using DISTINCT?
+ 1
@natalya distinct will not remove the data from the table, it will just displays the results without duplicate. distinct will not alter table .
0
delete from EmpDup where EmpID in(select EmpID from EmpDup group by EmpId having count(*) >1).......... in this query EmpDup is table name and EmpID column having duplicate values. using this query u can delete duplicate values
0
thanq