Q. What does this query do?
Code:SELECT MAX(price) FROM products;
β
Correct Answer: (B)
Selects the maximum price
Explanation: `MAX()` returns the highest value in the specified column.