1. As we have Left , Right and Full Outer Join I think the fisrt question should read:
SELECT P.PublisherCode, P.PublisherName, B.BookCode, B.BookTitle
FROM Publisher P LEFT OUTER JOIN Book B
ON P.PublisherCode = B.PublisherCode.
It shows PublisherCode, PublisherName values of the Publisher table that match PublisherCode in Book table and for unmatched rows from the Publisher table it will display Null.
The second is just a join condition
2. Refer to catchmeifuwant answer
Main Topics
Browse All Topics





by: catchmeifuwantPosted on 2003-11-11 at 00:42:09ID: 9720768
Have a go at this link,from Oracle documentation
com/docs/c d/B10501_0 1/server.9 20/ a96540/ queries7.h tm#2054014
http://download-uk.oracle.