Function |
Description |
---|---|
Returns 1 if both parameters are equal and no parameter is NULL |
|
Returns 1 if both parameters are not equal and no parameter is NULL |
|
Returns 1 if the first parameter is greater than the second parameter and no parameter is NULL |
|
Returns 1 if the first parameter is greater or equal than the second parameter and no parameter is NULL. |
|
Returns 1 if the first parameter is lower than the second parameter and no parameter is NULL |
|
Returns 1 if the first parameter is lower than or equal the second parameter and no parameter is NULL |
For compatibility reasons, operators are also provided
as functions.
Returns 1 if both parameters are equal and no parameter is NULL
number uEQ(value1, value2)
Numeric or string values to compare
uEQ(1,2) // returns 0uEQ(1,1) // returns 1uEQ(null,1) // returns 0
Returns 1 if both parameters are not equal and no parameter is NULL
number uNE(value1, value2)
Numeric or string values to compare
uNE(1,2) // returns 1uNE(1,1) // returns 0uNE(null,1) // returns 0
Returns 1 if the first parameter is greater than the second parameter and no parameter is NULL
number uGT(value1, value2)
Numeric or string values to compare
uGT(2,1) // returns 1uGT(1,2) // returns 0uGT(1,1) // returns 0uGT(null,1) // returns 0
Returns 1 if the first parameter is greater or equal than the second parameter and no parameter is NULL
number uGE(value1, value2)
Numeric or string values to compare
uGE(2,1) // returns 1uGE(1,2) // returns 0uGE(1,1) // returns 1uGE(null,1) // returns 0
Returns 1 if the first parameter is lower than the second parameter and no parameter is NULL
number uLT(value1, value2)
Numeric or string values to compare
uLT(2,1) // returns 0uLT(1,2) // returns 1uLT(1,1) // returns 0uLT(null,1) // returns 0
Returns 1 if the first parameter is lower than or equal the second parameter and no parameter is NULL
number uLE(value1, value2)
Numeric or string values to compare
uLE(2,1) // returns 0uLE(1,2) // returns 1uLE(1,1) // returns 1uLE(null,1) // returns 0