Readability
Chaining multiple OR operators makes SQL code less readable
SELECT col1
FROM t1
WHERE c1=9
OR c1=5
OR c1=10
Use the IN / NOT IN operator instead of chaining OR operators. It makes your SQL code more readable.
SELECT col1
FROM t1
WHERE c1 IN(9
,5
,10)
None