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
-------------------------------------------------
a@b.com          | a            | 2               --- remove
a@b.com          | a            | 4               --- remove
b@c.com          | b            | 3
c@d.com          | c            | 5
What sql query can I use in phpmyadmin to do this?
 
     
     
    