Comparison Operators in QueryHandle

“=”: EQUALS
“!=”: NOT_EQUALS
“>”: GREATER_THAN
“<”: LESS_THAN
“>=”: GREATER_OR_EQUALS
“<=”: LESS_OR_EQUALS
“and”: AND
“or”: OR;
“like”: LIKE
“is not null”: ISNOTNULL
“is null”: ISNULL
“+”: PLUS;
“-”: MINUS
“/”: DIVIDE
“*”: MULTIPLY
“exists”: EXISTS
“in”: IN;

1 Like