What is wrong with the following query:
select * from Orders where OrderID = (select OrderID from OrderItems where ItemQty > 50)
Correct Answer: The sub query can return more than one row, so, '=' should be replaced with 'in'
Explanation:
Note: This Question is unanswered, help us to find answer for this one
More MySQL MCQ Questions