I have a table like this:
table
id
=====
1
1
2
2
6
6
7
5
5
9
I need to remove duplicates other than creating a new table. One way of doing it is:
create table_new (select distinct id from table )
Is there any delete command which removes the duplicates?