I want to delete multiple duplicate keys from the below table:
id | name | uid
1 | ekta | 5
2 | ekta | 5
3 | sharma | 10
4 | sharma | 10
want it to be like
id | name | uid
1 | ekta | 5
3 | sharma | 10
I am using mysql. Is it ossible.?
I can't use unique constraint
query to make unique enteries because i want this duplicate entries ones entered to the table.