Data missing in query

M

mabyn

I have combined 4 tables in the following Query. All of the rows filled with
data from the tables except from the last two, ShamrockRating and
Marshallcomments. What should I change to make the table data show up?

SELECT [Attendees].[AttendeeFirstName], [Attendees].[AttendeeLastName],
[Attendees].[CompanyName], [Registration].[Entry Name],
[Registration].[EventID], [ShamrockRatingPossible].[ShamrockRating],
[ShamrockRatingMarshalComments].[MarshallComments]
FROM ShamrockRatingMarshalComments RIGHT JOIN (ShamrockRatingPossible RIGHT
JOIN (Attendees RIGHT JOIN Registration ON
[Attendees].[AttendeeID]=[Registration].[AttendeeID]) ON
[ShamrockRatingPossible].[ShamrockRatingID]=[Registration].[ShamrockRatingID])
ON
[ShamrockRatingMarshalComments].[MarshalCommentsID]=[Registration].[ShamrocksGottenID];


Tble 1 Tble 2 Tble 3 Tble 4
Attendees Registration ShamrockRatingPossible ShamrockRatingMarshalComments

FirstName EventName Shamrockrating (combo) Marshalcomments
Last Name EventID
Company

Thanks in advance.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top