SQL - CASE Expressions
How would you modify this nested CASE to also label orders with Priority 'Urgent' and Amount NULL as 'Check Amount'?
SELECT OrderID, CASE WHEN Priority = 'Urgent' THEN CASE WHEN Amount > 1000 THEN 'High Priority' ELSE 'Normal Priority' END ELSE 'Low Priority' END AS PriorityLevel FROM Orders;
