MySQL Forums
Forum List  »  Microsoft SQL Server

Re: Complex Outer Join Problem - all suggestiions appreciated
Posted by: Zoran Avtarovski
Date: March 05, 2006 11:10PM

Thanks Jay,

I tried it and it didn't work, but I was able get the following to work:

SELECT *
FROM users as U
INNER JOIN domain as D
ON U.domain_id = D.domain_id
LEFT JOIN (user_hospitals as UH INNER JOIN hospital as H
on H.hospital_id = UH.hospital_id)
on U.user_id = UH.user_id;


The SQL Reference book I have uses the non-Ansi method I guess. Time for a better SQL reference. I'd love some recommendations on good SQL books, if you or anybody else has had positive experiences with any.

Zoran



Edited 1 time(s). Last edit at 03/06/2006 12:03AM by Zoran Avtarovski.

Options: ReplyQuote


Subject
Written By
Posted
Re: Complex Outer Join Problem - all suggestiions appreciated
March 05, 2006 11:10PM


Sorry, you can't reply to this topic. It has been closed.

Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.