首页 > cat > evalorder 
 en fr de es it nl pl pt pt_BR mk sq ca hu cs tr ar fa id vi ko ja ru zh eo
前一个  下一个  编辑  重命名  撤销  搜索  管理  
文档  
警告! 该页面未翻译。  参见英文版 
Operator Evaluation Order
Operator Strength Example
- (negation) NOT Max. f = - g ^ 2 is the same as ( - g ) ^ 2
IS 11
& 9
&/ 8
^ 7 i = 4 ^ 2 * 3 ^ 3 is the same as (4 ^ 2) * ( 3 ^ 3 )
* / \ DIV MOD 6 i = 4 * 2 + 3 * 3 is the same as (4 * 2) + ( 3 * 3 )
+ - 5

= <> >= <= > < LIKE 4 i = 4 + 2 = 5 + 1 is the same as ( 4 + 2 ) = ( 5 + 1 )
OR AND XOR 2 i = a > 10 AND a < 20 is the same as ( a > 10 ) AND ( a < 20 )

The stronger the operator, the earlier it is evaluated.

If in doubt, rather use brackets to group subexpressions.