I need to delete duplicated rows from database. Can i do it with simple sql query? If not, please, show me some quick algorythm to do it.
Example:
id| field_one | field_two |
1 | 0000000 | 11111111 |
2 | 2222222 | 33333333 |
3 | 2222222 | 33333333 |
4 | 4444444 | 55555555 |
I need to delete row with id 2 (or 3, no matter, they are equal, but not both). Thanks for any help