Somehow in my database many repeating rows have been created. I found the bug and fixed it.. But the problem is all the previously created rows are still there and i want to remove the 2nd repeating rows. Manual deleting is not possible as there are 40000+ row
Ex:
1 255 value1
2 255 value1
3 256 value2
4 257 value3
I need the result as
1 255 value1
3 256 value2
4 257 value3
Thanks in advance