Multiple Choice
Structure of the BOOKS table
Structure of the PUBLISHER table
-Which of the following SQL statements will display the name of each publisher that publishes a book classified in the COMPUTER category?
A) SELECT UNIQUE name
FROM books,publisher;
B) SELECT UNIQUE name
FROM books NATURAL JOIN publisher
WHERE category = 'COMPUTER';
C) SELECT DISTINCT name
FROM books JOIN publisher
WHERE category = 'COMPUTER';
D) both b and c
Correct Answer:

Verified
Correct Answer:
Verified
Q48: _ operators are used to combine the
Q49: A(n)_ outer join is necessary when you
Q50: <img src="https://d2lvgg3v3hfg70.cloudfront.net/TB1929/.jpg" alt=" Contents of
Q51: Which of the following is used to
Q52: The most common type of join is
Q54: A full outer join cannot be created
Q55: To display rows from one table that
Q56: An outer join only lists rows that
Q57: A table alias is assigned in the
Q58: Which of the following types of joins