I am having similar nested join problems with the following:

SELECT tblThread.Message_date, tblAuthor.Username, tblAuthor.Author_ID,
tblTopic.Forum_ID FROM (tblForum INNER JOIN tblTopic ON tblForum.Forum_ID =
tblTopic.Forum_ID) INNER JOIN (tblAuthor INNER JOIN tblThread ON
tblAuthor.Author_ID = tblThread.Author_ID) ON tblTopic.Topic_ID =
tblThread.Topic_ID ORDER BY tblThread.Message_date DESC

I looked at Bob Hall's posting back in Dec, but being new to SQL can't quite
get my head around it.

Could anybody be a real champ and translate the sql code above from an MS
ACCESS based site in to MySQL?

Many thanks

Regards

Martin Schmalenbach
[EMAIL PROTECTED]


---------------------------------------------------------------------
Before posting, please check:
   http://www.mysql.com/manual.php   (the manual)
   http://lists.mysql.com/           (the list archive)

To request this thread, e-mail <[EMAIL PROTECTED]>
To unsubscribe, e-mail <[EMAIL PROTECTED]>
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php

Reply via email to