Comparing one value with many other values, use theswitch/choose caseconstruction instead of multiple||/ORoperators, so the compared value is mentioned in the code only once.
In this situation, we are not really switching/choosing between options (so we can call it "a fake switch/choose"), but why not to do our code more readable if the programming language doesn't allow the IN clause like T-SQL and PL/SQL do?