S
Steve Roberts
Adp 2003 + SQL 7.0
I am trying to create a list of unique domains that we send email to for our
spam filter. The column I am pulling from has the full (e-mail address removed) and I
need to create a query that just has domain.com in it.
SELECT DISTINCT EMAIL_ADDRESS
FROM dbo.CLIENT_CONTACT
WHERE (EMAIL_ADDRESS <> '""')
Thanks in advance..
Steve
I am trying to create a list of unique domains that we send email to for our
spam filter. The column I am pulling from has the full (e-mail address removed) and I
need to create a query that just has domain.com in it.
SELECT DISTINCT EMAIL_ADDRESS
FROM dbo.CLIENT_CONTACT
WHERE (EMAIL_ADDRESS <> '""')
Thanks in advance..
Steve