how to delete duplicate rows in mysql
This post was written by admin on January 21, 2010
Posted Under: MySQL
Posted Under: MySQL
create table newtable as
select * from oldtable where 1 group by [specific column];

create table newtable as
select * from oldtable where 1 group by [specific column];
