I have a database table with the columns: email, name, id
There are duplicate records with the same email and name (ids may or may not be different)
I want to remove all duplicates and not keep any of them.
Example
email | name | id
-------------------------------------------------
[email protected] | a | 2 --- remove
[email protected] | a | 4 --- remove
[email protected] | b | 3
[email protected] | c | 5
What sql query can I use in phpmyadmin to do this?