I have a mysql table named "dev" with a column of "email"s. I want to select out all the unique e-mail addresses and delete the duplicates.
My structure is as follows:
id || email
1 [email protected]
2 [email protected]
3 [email protected]
What I want is...
id || email
1 [email protected]
2 [email protected]
What mysql query can I used to accomplish this?
Thanks in advance!