Hi all,

With help from the list (much appreciated  :-) )  I set up my first inner 
join with a linking table. My query, which works great, looks like this:

SELECT *
FROM (words_tb INNER JOIN meanings_tb
      ON words_tb.word = meanings_tb.wordFK)
      INNER JOIN categories_tb
      ON categories_tb.IDC = meanings_tb.IDCFK
      WHERE words_tb.word = '#form.word#'


My problem is, the table "meanings_tb" has another associated table called 
"number_tb", a sister to "categories_tb". Both "number_tb" and 
"categories_tb" feed data to "meanings_tb" via a one-to-many relationship 
through IDCFK (for categories) and IDNFK (for number).

My question is, how would I go about adding the fourth table ("number_tb") 
to the query? Do I have to "nest" an INNER JOIN that captures the 
relationship between Meanings, Categories, and Number, inside the main 
INNER JOIN between Words and Meanings?
(Note: since this is Access, I've found out the parentheses are not optional)

Thanks in advance for your answers,


Roberto Perez
[EMAIL PROTECTED]


~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:196699
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54

Reply via email to