I am looking for a way to run a simple SELECT statment. I have a table which has two columns: id and email.
I want to run a SELECT statment that won't return duplicate values. For example, take the following data:
1   example@hotmail.com  
2   example12@hotmail.com  
3   example@hotmail.com 
4   example@hotmail.com
I want it to return only the following:
2   example12@hotmail.com
 
     
    