Returns a bit(1) value that indicates whether x is between the values defined by a and b.
x,a,b
The BETWEEN built-in function is equivalent to the test (a <= x) & (x <= b). Therefore, if any of the parameters are numeric, they must be REAL.
None.
Description
The BETWEEN built-in function is equivalent to the test (a <= x) & (x <= b). Therefore, if any of the parameters are numeric, they must be REAL.