CMDBQueryArithOpStruct structure
The CMDBQueryArithOpStruct
structure is used to specify the arithmetic operation to perform in the query qualification. This structure also holds the left and right operands to use in the qualification.
typedef struct CMDBQueryArithOpStruct
{
CMDB_QUERY_QUAL_ARITH_OP_TYPE operation;
struct CMDBQueryQualifierValueStruct *operandLeft;
struct CMDBQueryQualifierValueStruct *operandRight;
} CMDBQueryArithOpStruct;
The CMDBQueryArithOpStruct
structure consists of the following elements:
operation |
Specifies the arithmetic operation to perform in the query.
|
operandLeft |
Specifies the operand that appears to the left of the arithmetic operator. For example, for an expression of salary/100, salary is specified in |
operandRight |
Specifies the operand that appears to the right of the arithmetic operator. From the |
Comments