SQL - CASE Expressions
Identify the error in this Simple CASE expression:
SELECT CASE WHEN Status = 1 THEN 'Active' WHEN Status = 2 THEN 'Inactive' ELSE 'Unknown' END FROM Users;
