BETWEENEXCLUSIVE

BETWEENEXCLUSIVE returns a bit(1) value that indicates whether the first argument x is in the open interval as defined by the second argument a and the third argument b.

Read syntax diagramSkip visual syntax diagramBETWEENEXCLUSIVE( x, a, b)
x, a, b
Expressions. They must be either all ORDINAL with the same type or all computational.

BETWEENEXCLUSIVE(x,a,b) is equivalent to the test (a < x ) & (x < b). Therefore, if any of the arguments are numeric, they must be REAL.