the problem here is that you need to specify which domain you're after
because what you posted will return
all emails in the table, and therefore you don't really need to "do the substring bit to retrieve the domain part"
if you're after the emails for a specific domain, just do this:
Code:
WHERE email LIKE '%@example.com'