Progress
Language Reference


GE or >= Operator

Interfaces
OS
SpeedScript
All
All
Yes

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

If characters are being compared, the character values are used to index into the current collation table so that the sort values of the characters are used in the comparison.

SYNTAX

expression { GE | >= } expression 

expression

A constant, field name, variable name, or any combination of these. The expressions on either side of the GE or >= must be of the same data type, although one might be integer and the other decimal.

EXAMPLE

This procedure displays item information for those items whose on-hand value is greater than or equal to 120.

r-ge.p
FOR EACH item WHERE on-hand >= 120:
  DISPLAY item.item-num item-name on-hand.
END. 

NOTES


Copyright © 2004 Progress Software Corporation
www.progress.com
Voice: (781) 280-4000
Fax: (781) 280-4095