Boolean type
A boolean type can have two value: true or false. The following operators can be used on boolean types:
The not operator has the highest priority, and the operators = and <> have the lowest priority.
For example, the following expression is true:
((true and false) = false)