G
Guest
SELECT [App Info].[First Name], [App Info].MA, [App Info].[Last Name], [Class
Info].Date
FROM ([App Info] INNER JOIN [Class Info] ON [App Info].[Soc Sec #] = [Class
Info].[Soc Sec])
INNER JOIN [Desired Work] ON [App Info].[Soc Sec #] = [Desired Work].[Soc
Sec];
The above works, returning the four values that I asked for. But the
following doesn't work -- notice that the only change is a WHERE clause in
the first INNER JOIN
SELECT [App Info].[First Name], [App Info].MA, [App Info].[Last Name],
[Class Info].Date
FROM ([App Info] INNER JOIN [Class Info] ON [App Info].[Soc Sec #] = [Class
Info].[Soc Sec]
WHERE [Class Info].[Class Name] = "Qualified Applicant Exam")
INNER JOIN [Desired Work] ON [App Info].[Soc Sec #] = [Desired Work].[Soc
Sec];
Info].Date
FROM ([App Info] INNER JOIN [Class Info] ON [App Info].[Soc Sec #] = [Class
Info].[Soc Sec])
INNER JOIN [Desired Work] ON [App Info].[Soc Sec #] = [Desired Work].[Soc
Sec];
The above works, returning the four values that I asked for. But the
following doesn't work -- notice that the only change is a WHERE clause in
the first INNER JOIN
SELECT [App Info].[First Name], [App Info].MA, [App Info].[Last Name],
[Class Info].Date
FROM ([App Info] INNER JOIN [Class Info] ON [App Info].[Soc Sec #] = [Class
Info].[Soc Sec]
WHERE [Class Info].[Class Name] = "Qualified Applicant Exam")
INNER JOIN [Desired Work] ON [App Info].[Soc Sec #] = [Desired Work].[Soc
Sec];