The
NOT operator has the highest precedence, followed by the
AND operator, followed by the
OR operator. You can always control the precedence by
using parentheses.
For example, the expression
"A OR B AND C NOT D" is interpreted as
"A OR (B AND C AND (NOT D))".
Copyright © Legal Notices

