SQL - CASE Expressions
What will this SQL query output?
SELECT Product, CASE WHEN Stock = 0 THEN 'Out of stock' WHEN Stock < 5 THEN 'Low stock' ELSE 'In stock' END AS Status FROM Inventory;
