Here the following is a simple SQL statement with a CASE expression syntax. SELECT * FROM EMPLOYEEWHERE CASE when emp_id < 1001000 then 'Old Employee' when emp_dept <'B' then 'Old Department'ELSE 'Normal'END = 'old Employee' Here the following are the query plans of this SQL, it takes 2.23 seconds in a cold cache situation, which means data will be cached during the SQL is executing. The query shows a Full Table Scan of the EMPLOYEE table due to the CASE expression cannot utilize the emp_id index or emp_dept index. We can rewrite the CASE expression into the following syntax with multiple OR conditions. select * from EMPLOYEE where emp_id < 1005000 and 'Old Employee' = 'Old Employee'or not ( emp_id < 1005000 ) and emp_dept < 'B' and 'Old Department' = 'Old Employee'or not ( emp_id < 1005000 ) and not ( emp_dept < 'B' ) and 'Normal' = 'Old Employee' Here is the query plan of the rewritten SQL and the speed is 0.086 seconds. It is 25 times better than the original syntax. The new query plan shows an Index Seek of EMP_ID index. This SQL rewrite is useful when the CASE expression is equal to a hardcoded literal, but if the literal “ ='Old Employee' ” replaced by a variable “ = :var ”, this rewrite may not be useful, I will discuss it in my next blog. This kind of rewrite can be achieved by Tosska SQL Tuning Expert for SQL Server automatically. Tosska SQL Tuning Expert (TSES™) for SQL Server® - Tosska Technologies Limited