J
John
I am trying to write a query that pulls information from 3
different tables. The query looks like this:
SELECT [Results].[EmpID], [Results].[COURNUM], [Results].
[Score], [Results].[CompDATE], [Results].[NumDAYS],
[Results].[SECNUM], [Results].[EmpNAME], [Results].[Link],
[Course].[Instructor]
FROM (Training INNER JOIN Results ON [Training].[COURNUM]=
[Results].[COURNUM]) INNER JOIN Course ON [Course].
[COURNUM]=[Results].[COURNUM]
WHERE [Please Select Course Numer]=[Results].[COURNUM] AND
[Please Enter Section Number]=[Results].[SECNUM];
When I run the query i get duplicate entries. Is there
something I am doing wrong, or perhaps something I can
implement to catch the duplicates? I want the query to be
based off of results....THANK A MILLION IN ADVANCE
different tables. The query looks like this:
SELECT [Results].[EmpID], [Results].[COURNUM], [Results].
[Score], [Results].[CompDATE], [Results].[NumDAYS],
[Results].[SECNUM], [Results].[EmpNAME], [Results].[Link],
[Course].[Instructor]
FROM (Training INNER JOIN Results ON [Training].[COURNUM]=
[Results].[COURNUM]) INNER JOIN Course ON [Course].
[COURNUM]=[Results].[COURNUM]
WHERE [Please Select Course Numer]=[Results].[COURNUM] AND
[Please Enter Section Number]=[Results].[SECNUM];
When I run the query i get duplicate entries. Is there
something I am doing wrong, or perhaps something I can
implement to catch the duplicates? I want the query to be
based off of results....THANK A MILLION IN ADVANCE