What is better to use from point of view performance:
I have condition like this:
where ...
and not ( a and b)
and not (c and d)
and not (e and f)
May be better to convert it to the next:
where ...
and ( not a or not b)
and (not c or not d)
and (not e or not f)
?
1