I have a large MySQL DB of email addresses. I'd like to be able to group/filter them by domain. Is there a way of doing it using DISTINCT()? At the moment I'm fetching all via PHP, iterate and split at the @-sign and create an array for each domain. This works fine for smaller data-sets, but is not viable in the long run. Any suggestions?
I'm envisaging something along those lines:
SELECT DISTINCT([part-of-email-after-the-@-sign].EMAIL) FROM CONTACTS
Thanks