<ST_FunctionOperator>
(Function Operator)
This simple type defines the condition expression functions which can be used to perform operations.
This simple type's contents are a restriction of the XML Schema token datatype.
The following are possible enumeration values for this type:
Enumeration Value |
Description |
---|---|
|
Equal function operator. |
|
Specifies the grater than function operator. |
|
Specifies the greater than or equal to function operator. |
|
Specifies the less than function operator. |
|
Specifies the less than or equal to function operator. |
|
Specifies the not equal to function operator. |
Referenced By |
---|
|
The following XML Schema fragment defines the contents of this simple type:
<simpleType name="ST_FunctionOperator" final="restriction">
<restriction base="xsd:token">
<enumeration value="equ"/>
<enumeration value="neq"/>
<enumeration value="gt"/>
<enumeration value="lt"/>
<enumeration value="gte"/>
<enumeration value="lte"/>
</restriction>
</simpleType>