SQL - CASE Expressions
Given the table
Employees with column salary, what rows will this query return?SELECT * FROM Employees WHERE CASE WHEN salary >= 50000 THEN 1 ELSE 0 END = 1;
