You are maintaining data for a Products table, and want to see the products which have a current stock
of at least 50 more than the minimum stock limit. The structure of the Products table is:
ProductID
ProductName
CurrentStock
MinimumStock
Two possible queries are:
(a)select * from products where currentStock > MinimumStock + 50
(b)select * from products where currentStock - 50 > MinimumStock
Choose the appropriate option with regard to the above queries.
Correct Answer: (a) and (b) both are correct
Explanation:
Note: This Question is unanswered, help us to find answer for this one
More MySQL MCQ Questions