Another question
I have a database I’m trying to set up with a query (3 tables) that will give me unique names. The Select statement below of course shows duplicates as a lot of people can be on more than 1 committee but we only want to send them 1 e-mail. I read all the current posts on No Duplicates etc and none of them had 3 tables. Can anyone give me some suggestions. Thanks again. This is a great forum. Robin
SELECT ATA.Surname, ATA.Title, ATA.Prename, ATA.EmailAddress, ATA.HomeEmailAddress, ATA_Committee.Lcomm, Committee.TabComm
FROM (ATA INNER JOIN ATA_Committee ON ATA.ID = ATA_Committee.ID) INNER JOIN Committee ON ATA_Committee.Lcomm = Committee.Code;