-
Notifications
You must be signed in to change notification settings - Fork 1
Ge_or_rhs_null
cicada edited this page Dec 7, 2022
·
13 revisions
Ordering functions greater than or equal to or right side has null values
- ge_or_rhs_null(a, b)
ge_or_rhs_null(a, b) results in a boolean data item indicating if the values of data item a are greater than or equals to the corresponding values of data item b or if the values of data item a are null.
The comparison with missing values in data item a results in the value True (except for null values in data item b).
Data items with Numeric, string or bool value type
- Domain of the arguments must match or be void (literals or parameters can be compared to data items of any domain).
- Arguments must have matching:
5.15
attribute
geAB(CDomain) :=
ge_or_rhs_null
(A, B);
A |
B |
|
gtAB |
0 |
0 |
True |
|
1 |
2 |
False |
|
2.5 |
2.5 |
True |
|
-100 |
100 |
False |
|
999 |
-999 |
True |
|
null |
0 |
False |
|
null |
null |
False |
|
0 |
null |
True |
|
null |
100 |
False |
|
100 |
null |
True |
CDomain, nr of rows = 10
GeoDMS ©Object Vision BV. Source code distributed under GNU GPL-3. Documentation distributed under CC BY-SA 4.0.