SQL - CASE Expressions
Given the table
Employees with column Salary, what will this query return?SELECT Salary, CASE WHEN Salary > 5000 THEN 'High' ELSE 'Low' END AS SalaryLevel FROM Employees;
