Give more meaning for operator 'or'
`Projects`.`id` IN (1,2,3) OR `Projects`.`id` < 10 has no sense, second part should be enough. That's why I replaced `lt` lookup with `gt` to generate following SQL `Projects`.`id` IN (1,2,3) OR `Projects`.`id` > 10 which have much more sense.
Showing
with
0 additions
and
0 deletions
This diff is collapsed.
Click to expand it.
-
Please register or sign in to post a comment