My table structure -
username : website
I want to select only unique websites
I have tried running this query -
SELECT DISTINCT username,website from asd
But it selects the unique combination
example -
John www.google.com
Jack www.google.com
Tom www.facebook.com
Query should return
John - www.google.com
Tom - www.facebook.com
Thank you