I have a table like
table name : emailvalue
--------------------------------------
| email | value |
-----------------------------------
| [email protected] | A |
--------------------------------------
| [email protected] | B |
--------------------------------------
| [email protected] | C |
--------------------------------------
| [email protected] | F |
--------------------------------------
| [email protected] | G |
--------------------------------------
| [email protected] | A |
--------------------------------------
| [email protected] | 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
--------------------------------------
| [email protected] | B |
--------------------------------------
| [email protected] | C |
--------------------------------------
and also
--------------------------------------
| [email protected] | A |
--------------------------------------
| [email protected] | H |
--------------------------------------