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