Possible Duplicate:
Remove duplicate rows in MySQL
Delete all Duplicate Rows except for One in MySQL?
This is how my table looks like
1 | 1 | Hello
1 | 2 | Hello
1 | 3 | Hello
1 | 4 | some text
1 | 5 | text
1 | 6 | text
How can I delete all duplicate rows and just leave the last one; for example:
1 | 3 | Hello
1 | 4 | some text
1 | 6 | text
Any help would be greatly appreciated.