Solved

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

Question 27

Multiple Choice

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


A) ​SELECT Description FROM Item 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 Customer WHERE Storehouse='3' AND OnHand>20 ;

Correct Answer:

verifed

Verified

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

Related Questions