PreviousNextIndex

GE or >= operator

Returns a TRUE value if the first of two expressions is greater than or equal to the second expression.

Syntax

expression { GE | >= } expression 

expression
Example

This procedure displays item information for those items whose OnHand value is greater than or equal to 120:

r-ge.p
FOR EACH Item NO-LOCK WHERE Item.OnHand >= 120: 
  DISPLAY Item.ItemNum Item.ItemName Item.OnHand. 
END. 

Notes

OpenEdge Release 10.2B
Copyright © 2009 Progress Software Corporation
PreviousNextIndex