Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

ComparatorEvaluates to True when...Types handled
_LESS_THANitem 1 is less than item 2numeric, alphabetic
_GREATER_THANitem 1 is greater than the item 2numeric, alphabetic
_EQUALSitem 1 is identical to the item 2numeric, alphabetic
_GREATER_THAN_OR_EQUALitem 1 is identical to or greater than the item 2numeric, alphabetic
_LESS_THAN_OR_EQUALitem 1 is identical to or less than the item 2numeric, alphabetic
_NOT_EQUALSitem 1 is not identical to the item 2numeric, alphabetic
_STARTS_WITHitem 1 starts with the string specified in item 2alphabetic
_NOT_STARTS_WITHitem 1 does not start with the string specified in item 2alphabetic
_LIKEitem 1 is like the item 2alphabetic
The following comparators, _IS_NOT_NULL and _IS_NULL, only have 1 item, which is compared to null.
_IS_NOT_NULLitem 1 is a non null string or value.numeric, alphabetic
_IS_NULLitem 1 is null.numeric, alphabetic

...