Looking at other questions here on SO and google seems to indicate MS Sql Server does not guarantee to short circuit the expressions in the WHERE clause.
Does that mean that a WHERE expression like this this one cannot be trusted to work...?
... WHERE (@include_voided = 1 OR mytable.void = 0) AND ...
I frequently use this kind of expression in my stored procedures. Having researched short-circuiting for another reason I am now wondering if this should be replaced with ...
... WHERE mytable.void = case when @include_voided=1 then mytable.void else 0 END
...as all of the articles seem to indicate that CASE statements are the only ones guaranteed to short-circuit.
I am hoping that the first expression is fine just because it is more readable and easier to type.