SQL - CASE Expressions
Find the error in this query:
SELECT * FROM Sales WHERE CASE WHEN region = 'North' THEN amount > 1000 ELSE amount < 500 END = TRUE;