multitple inner join
Hello,
I have 3 tables guests,events,users
The user table is related to events table through EventID
and the guests table is related to users table through USERid
How can I join these 3 tables
I use:
Rs.open "select * from guests inner join events on guests.eventID=events.EventID ",Conn,3,3
but it relates just guests and event tables.
I believe I should use 2 inner join but I do not know how??
|