I have a table like
table name : emailvalue
--------------------------------------
| email | value |
-----------------------------------
| ab@gmail.com | A |
--------------------------------------
| ab@gmail.com | B |
--------------------------------------
| ab@gmail.com | C |
--------------------------------------
| cccc@gmail.com | F |
--------------------------------------
| dd@gmail.com | G |
--------------------------------------
| dd@gmail.com | A |
--------------------------------------
| dd@gmail.com | H |
--------------------------------------
I want to delete all for same email without first row. how i will right the sql in my sql
the SQL should delete this 2 row in mysql
--------------------------------------
| ab@gmail.com | B |
--------------------------------------
| ab@gmail.com | C |
--------------------------------------
and also
--------------------------------------
| dd@gmail.com | A |
--------------------------------------
| dd@gmail.com | H |
--------------------------------------