M
mabyn
Following is the SQL for a query that has four tables. The last two fields
are not populating with the data from their respective tables. I don't know
what I am doing incorrectly. Can someone assist me?
SELECT Attendees.AttendeeFirstName, Attendees.AttendeeLastName,
Attendees.CompanyName, Registration.[Entry Name], Registration.EventID,
ShamrockRatingPossible.ShamrockRating,
ShamrockRatingMarshalComments.MarshallComments
FROM ShamrockRatingPossible RIGHT JOIN (ShamrockRatingMarshalComments RIGHT
JOIN (Attendees RIGHT JOIN Registration ON Attendees.AttendeeID =
Registration.AttendeeID) ON ShamrockRatingMarshalComments.MarshalCommentsID =
Registration.ShamrocksGottenID) ON ShamrockRatingPossible.ShamrockRatingID =
Registration.ShamrockRatingID;
are not populating with the data from their respective tables. I don't know
what I am doing incorrectly. Can someone assist me?
SELECT Attendees.AttendeeFirstName, Attendees.AttendeeLastName,
Attendees.CompanyName, Registration.[Entry Name], Registration.EventID,
ShamrockRatingPossible.ShamrockRating,
ShamrockRatingMarshalComments.MarshallComments
FROM ShamrockRatingPossible RIGHT JOIN (ShamrockRatingMarshalComments RIGHT
JOIN (Attendees RIGHT JOIN Registration ON Attendees.AttendeeID =
Registration.AttendeeID) ON ShamrockRatingMarshalComments.MarshalCommentsID =
Registration.ShamrocksGottenID) ON ShamrockRatingPossible.ShamrockRatingID =
Registration.ShamrockRatingID;