AND operator
Returns a TRUE value if each logical expression is TRUE.
Syntax
expression
ExampleThis procedure lists all customers with credit limits between two values (supplied by the user and stored in the variables low-credit and hi-credit). The expressions Customer.CreditLimit >= low-credit and Customer.CreditLimit <= hi-credit are logical expressions because each yields a true or false value. Using the AND operator to join these logical expressions results in a logical expression that follows the WHERE keyword.
See also
OpenEdge Release 10.2B
|