Operator
|
Description
|
:=
|
Assigns any value to an attribute of a key.
|
::=
|
Assigns the result of a functional expression (for example, min, max, avg) to an attribute of a key, where the first argument of the function is the attribute itself. This notation enables you to avoid repeating the first argument (int this case, the attribute itself) which is assumed to be the same as the expression on the left side.
|
+=
|
Adds the value in right hand side to the attribute of a key (numeric type only).
|
++
|
Adds 1 to the attribute of a key (numeric type only).
|
-=
|
Subtracts the value in right hand side to the attribute of a key (numeric type only).
|
--
|
Subtracts 1 from the attribute of a key (numeric type only).
|