GE, >=, => |
![]() ![]() ![]() |
The GE selection clause operator compares a field or evaluated expression against another field, evaluated expression or literal value and tests for the first item being greater than or equal to the second. The synonyms >= and => can be used.
Format
field GE {NO.CASE} value
where
The GE selection clause operator returns true if field is greater than or equal to value.
Example
LIST STOCK WITH QTY GE 100
This command lists items found on the STOCK file with a QTY field of 100 or over. |