All Products
Search
Document Center

Tablestore:LogicalOperator

Last Updated:Apr 30, 2026

LogicalOperator specifies a logical operator used in query conditions.

Enumeration values

  • LO_NOT: Applies a logical NOT to the condition.

  • LO_AND: Combines conditions with a logical AND.

  • LO_OR: Combines conditions with a logical OR.

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