Another tutorial i found on Google, it shows you how to delete duplicate rows of data on your SQL. And after i test it, its really work. Try it!
Link-Back: http://mediakey.dk/~cc/mysql-remove-duplicate-entries/
mysql > ALTER IGNORE TABLE tablename ADD UNIQUE INDEX(value1, value2);
tablename = your own table name
value1, value2 = your own value
Good luck!
Related posts:

