>My conference program database includes presenters and presentations. Some
>presenters do more than one presentation and some presentations have more
[quoted text clipped - 7 lines]
>Presentation ID are primary keys set to a one-to-many relationship. Can
>someone help?
OK -- the SQL statement:
SELECT DISTINCT [ConfTBL--Presenters].PresenterID,
[ConfTBL--Presenters].Last_Name, [ConfTBL--Presenters].First_Name,
[ConfTBL--Presenters].Middle_Name, [First_Name] & " " & [Middle_Name] & " " &
[Last_Name] AS Name, [ConfTBL--Presentations].Presenter2,
[ConfTBL--Presentations].Presentation_Title, [ConfTBL--Presenters].WkPhone,
[ConfTBL--Presenters].Extension, [ConfTBL--Presenters].HmPhone,
[ConfTBL--Presenters].CellPhone, [ConfTBL--Presenters].[Fax Number],
[ConfTBL--Presenters].Email, [ConfTBL--Presentations].ConferenceYear
FROM [ConfTBL--Presenters] INNER JOIN [ConfTBL--Presentations] ON
[ConfTBL--Presenters].PresenterID = [ConfTBL--Presentations].Pres1ID
WHERE ((([ConfTBL--Presentations].ConferenceYear)=[What Year?]))
ORDER BY [ConfTBL--Presenters].Last_Name, [ConfTBL--Presenters].First_Name,
[ConfTBL--Presenters].Middle_Name;

Signature
nhb -- nc
> >My conference program database includes presenters and presentations. Some
> >presenters do more than one presentation and some presentations have more
[quoted text clipped - 14 lines]
>
> John W. Vinson[MVP]
John Vinson - 09 May 2005 18:10 GMT
>OK -- the SQL statement:
>
[quoted text clipped - 11 lines]
>ORDER BY [ConfTBL--Presenters].Last_Name, [ConfTBL--Presenters].First_Name,
>[ConfTBL--Presenters].Middle_Name;
Well, you're including fields Presentation_Titls, Presenter2, and
ConfernceYear from the ConfTBL--Presentations table in the query. If a
given presenter gives four different presentations, this Query will
(correctly) have four records, one for each presentation.
What would you want to see? An arbitrary one of the presentations? I
think you're getting exactly what you should expect to get!
John W. Vinson[MVP]
Nancy - 11 May 2005 17:50 GMT
OK - thanks. I was afraid that might be the case. I wanted to produce a
"directory" of presenters and needed only limited info for the user but some
of it was in the presentations table. Oh well. Many thanks for your help.

Signature
nhb -- nc
> >OK -- the SQL statement:
> >
[quoted text clipped - 21 lines]
>
> John W. Vinson[MVP]