Question
select distinct...again
I have data that contains a column of emails, a column of
names and
addresses... and so on.
some of the emails are the same and I don't want those to show up.
I want to be able to pull a column of emails, a column of names and a
column of adresss but I want to pull only those that have distinct email
addresses.
When I
SELECT Distinct email, FName, LName
FROM table1
WHERE (MailList = 1)
It doesn't filter out the distinct. I'm guessing that you're going to
say it's pulling from the row...
How would I make it so that I only see rows with distinct emails?
Thanks
Lionstone?
addresses... and so on.
some of the emails are the same and I don't want those to show up.
I want to be able to pull a column of emails, a column of names and a
column of adresss but I want to pull only those that have distinct email
addresses.
When I
SELECT Distinct email, FName, LName
FROM table1
WHERE (MailList = 1)
It doesn't filter out the distinct. I'm guessing that you're going to
say it's pulling from the row...
How would I make it so that I only see rows with distinct emails?
Thanks
Lionstone?