SQL - CASE Expressions
Identify the error in this SQL snippet using CASE:
SELECT Name, CASE Salary > 5000 THEN 'High' ELSE 'Low' END AS SalaryLevel FROM Employees;
