Multiple Choice
Structure of the BOOKS table
Structure of the PUBLISHER table
-Which of the following will display the title,publication date,and publisher name of each book in the BUSINESS category?
A) SELECT title,pubdate,name
FROM publisher JOIN books USING (pubid)
WHERE category = 'BUSINESS';
B) SELECT title,pubdate,name
FROM publisher JOIN books ON (pubid)
WHERE category = 'BUSINESS';
C) SELECT title,pubdate,name
FROM publisher OUTER JOIN books USING (pubid)
WHERE category = 'BUSINESS';
D) SELECT title,pubdate,name
FROM publisher CROSS JOIN books USING (pubid)
WHERE category = 'BUSINESS';
Correct Answer:

Verified
Correct Answer:
Verified
Q9: The <u>outer join</u> operator is used to
Q10: The JOIN keyword must be used in
Q11: <img src="https://d2lvgg3v3hfg70.cloudfront.net/TB1929/.jpg" alt=" Structure of the
Q12: An outer join operator consists of a
Q13: A join that is based upon data
Q15: Which of the following types of joins
Q16: A(n)_ join is used when the related
Q17: The _ set operator is used to
Q18: Which of the following terms refers to
Q19: When a self-join is created,each copy of