I am building a query covering several WHERE AND conditions. Here is an example:
...
WHERE stage1 = 3
AND stage2 = 3
AND stage3 = 3
AND stage4 = 3
AND stage5 = 3
AND submitted = 0
Is there a shorter way of writing this, perhaps like WHERE TRUE(stage1=3 & stage2=3 ...) ?
Edit – just for info, here’s the table:

The shorter way to write that would be:
It won’t be any faster though, either way you write it.