Solved

Based on the Table Description and SQL Shown, Which Query

Question 33

Multiple Choice

Based on the table description and SQL shown, which query finds the description and price of the items that have a Price field value greater than Wireless charger, ItemNum W208? Items (ItemNum, Description, OnHand, Category, Storehouse, Price )


A) SELECT Description, Price FROM Items WHERE Price >(SELECT Price FROM Items WHERE ItemNum = 'W208') ;
B) SELECT Description, Price FROM Items WHERE Price > ItemNum = 'W208') ;
C) SELECT Price FROM Items WHERE ItemNum > 'W208' (SELECT Description, Price FROM Items) ;
D) SELECT Description, Price FROM Items WHERE Price > (SELECT ItemNum = 'W208' FROM Items) ;

Correct Answer:

verifed

Verified

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

Related Questions