SQL - CASE Expressions
What will be the output of this query?
If
SELECT ProductID, CASE CategoryID WHEN 10 THEN 'Electronics' WHEN 20 THEN 'Clothing' END AS CategoryName FROM Products;
If
CategoryID is 30 for some rows.