I have a MySQL table like:
MySQL
ID, Col1, Col2, Col3, Col4, etc...
ID is a primary key and has been w
primary key
you can also do this
Create table new_table{id, col1,col2,col3} insert into new_table values(select distinct * from old_table) drop table old_table