I have a table with multiple email ids and i want to delete duplicate email ids from table:
TABLE:
-----------------------
|ID | Email |
| 1 | [email protected] |
| 2 | [email protected] |
| 3 | [email protected] |
| 4 | [email protected] |
| 5 | [email protected] |
| 6 | [email protected] |
-----------------------
How can I delete the extra email ids and table will have only unique email id?