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 0
uEQ(1,1) // returns 1
uEQ(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 1
uNE(1,1) // returns 0
uNE(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 1
uGT(1,2) // returns 0
uGT(1,1) // returns 0
uGT(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 1
uGE(1,2) // returns 0
uGE(1,1) // returns 1
uGE(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 0
uLT(1,2) // returns 1
uLT(1,1) // returns 0
uLT(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 0
uLE(1,2) // returns 1
uLE(1,1) // returns 1
uLE(null,1) // returns 0