Solved

​ Contents of the PROMOTION Table

Question 30

Multiple Choice

  ​ Contents of the PROMOTION table    Structure of the BOOKS table -Which of the following SQL statements will display the gift that should be sent to any customer who orders the book titled THE WOK WAY TO COOK?​ A)  SELECT title FROM promotion WHERE retail BETWEEN minretail AND maxretail; B)  SELECT title FROM promotion NATURAL JOIN books WHERE retail BETWEEN minretail AND maxretail; C)  SELECT title FROM promotion JOIN books USING retail BETWEEN minretail AND maxretail; D)  ​none of the above
Contents of the PROMOTION table
  ​ Contents of the PROMOTION table    Structure of the BOOKS table -Which of the following SQL statements will display the gift that should be sent to any customer who orders the book titled THE WOK WAY TO COOK?​ A)  SELECT title FROM promotion WHERE retail BETWEEN minretail AND maxretail; B)  SELECT title FROM promotion NATURAL JOIN books WHERE retail BETWEEN minretail AND maxretail; C)  SELECT title FROM promotion JOIN books USING retail BETWEEN minretail AND maxretail; D)  ​none of the above Structure of the BOOKS table
-Which of the following SQL statements will display the gift that should be sent to any customer who orders the book titled THE WOK WAY TO COOK?​


A) SELECT title FROM promotion
WHERE retail BETWEEN minretail AND maxretail;
B) SELECT title FROM promotion NATURAL JOIN books
WHERE retail BETWEEN minretail AND maxretail;
C) SELECT title FROM promotion JOIN books
USING retail BETWEEN minretail AND maxretail;
D) ​none of the above

Correct Answer:

verifed

Verified

Unlock this answer now
Get Access to more Verified Answers free of charge

Related Questions