I have a table which has student ID and student email address, and I want to delete duplicate email address, I am using MySQL and wondering any good solutions. For any duplicate email address, keep either one is fine.
Sample input,
ID1 [email protected]
ID2 [email protected]
ID3 [email protected]
Sample output,
ID1 [email protected]
ID2 [email protected]
thanks in advance, Lin