Solved

Based on the Code Above,list the Descriptions of All Items

Question 4

Multiple Choice

Based on the code above,list the descriptions of all items that are located in Storehouse 3 or for which there are more than 20 units on hand,or both.​


A) ​SELECT Description FROM Customer WHERE Storehouse='3' AND OnHand>20 ;
B) ​SELECT Description FROM Item WHERE Storehouse='3' OR OnHand>20 ;
C) ​SELECT Description FROM Item WHERE Storehouse='3' ;
D) ​SELECT Description FROM Item WHERE OnHand>20 ;

Correct Answer:

verifed

Verified

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

Related Questions