All Products
Search
Document Center

Tablestore:LogicalOperator

Last Updated:Jul 10, 2024

LogicalOperator specifies a logical operator.

Enumeration values

  • LO_NOT: NOT.

  • LO_AND: AND.

  • LO_OR: OR.

enum LogicalOperator {
    LO_NOT = 1;
    LO_AND = 2;
    LO_OR = 3;
}