Question:What is wrong with the following query:
select * from Orders where OrderID = (select OrderID from OrderItems where ItemQty > 50)
A In the sub query, '*' should be used instead of 'OrderID'
B The sub query can return more than one row, so, '=' should be replaced with 'in'
C The sub query should not be in parenthesis
D None
+ AnswerB
+ Report