Which of the following SQL statements is valid? a. SELECT books.title, orderitems.quantity FROM books b, orderitems o

Question:

Which of the following SQL statements is valid?

a. SELECT books.title, orderitems.quantity

FROM books b, orderitems o

WHERE b.isbn = o.ibsn;

b. SELECT title, quantity

FROM books b JOIN orderitems o;

c. SELECT books.title, orderitems.quantity

FROM books JOIN orderitems

ON books.isbn = orderitems.isbn;

d. None of the above

Fantastic news! We've Found the answer you've been seeking!

Step by Step Answer:

Related Book For  book-img-for-question

Oracle 12c SQL

ISBN: 978-1305251038

3rd edition

Authors: Joan Casteel

Question Posted: