Which of the following determines how long ago orders that havent shipped were received? a. SELECT order#,

Question:

Which of the following determines how long ago orders that haven’t shipped were received?

a. SELECT order#, shipdate-orderdate delay

FROM orders;

b. SELECT order#, SYSDATE - orderdate

FROM orders

WHERE shipdate IS NULL;

c. SELECT order#, NVL (shipdate, 0)

FROM orders

WHERE orderdate is NULL;

d. SELECT order#, NULL (shipdate)

FROM orders;

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: