Versions Compared

Key

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

...

Excerpt
hiddentrue

Functions which compare values and return a true or false result.

List of logical functions

...

Some logical functions may take a Comparator Type parameter which specifies the comparison operations. These are strings with one of the following values:

ComparatorMeaningTypes handled
_LESS_THANThe first item is less than the second.
Numerical and Alphabetic comparisons are handled
 numeric, alphabetic
_GREATER_THANThe first item is greater than the second.
Numerical and Alphabetic comparisons are handled
 numeric, alphabetic
_EQUALSThe first item is identical to the second.
Numerical and Alphabetic comparisons are handled
 numeric, alphabetic
_GREATER_THAN_OR_EQUALThe first item is identical to or greater than the second.
Numerical and Alphabetic comparisons are handled
 numeric, alphabetic
_LESS_THAN_OR_EQUALThe first item is identical to or less than the second.
Numerical and Alphabetic comparisons are handled
 numeric, alphabetic
_NOT_EQUALSThe first item is not identical to the second.
Numerical and Alphabetic comparisons are handled
 numeric, alphabetic
_STARTS_WITHThe first item starts with the second string.
Alphabetic comparisons only
alphabetic
_NOT_STARTS_WITHThe first item does not start with the second string.
Alphabetic comparisons only
alphabetic
_LIKEThe first item is like the second string.
Alphabetic comparisons only
 alphabetic
_IS_NOT_NULLThe first item is not null compared to the second string ??numeric, alphabetic
_IS_NULLThe first item is null  to the second string ??numeric, alphabetic

Clarifying info required:

  •  If you use a comparator are you asking a question? Is A (comparison) B?
  • Syntax of a simple example, e.g. A _EQUALS B
    • A and B are what?
  • What do you get back Returns either 1 or 0 to indicate true or false
  • If you use a comparator are you asking a question? What do you get back
  • Is A less than B
  • _START: how many characters ??? 
  • How does _LIKE work??? 
  • ISNULL - what is it comparing