relational operators

relational operators


reformat Index Level retrieval scheme
Syntax with {not} attr.name operator "valuestring"  
Category Access
Type Operator, Relational
Description used in the selection criteria process.

Each operator (sometimes called "logical") has an "English" equivalent which may be used interchangeably with the "symbol" form.  When no operator is present, the default is an "equal to" (=).

Symbol                 Meaning

= or eq                Equal to
#, ne,no or not        Not equal to
> or gt or after       Greater than
< or lt or before      Less than
>= or ge               Greater than or equal to
<= or le               Less than or equal to
Options
See Also not modlist attr.name le each before after ge and
Example list entity with state eq "ca"

list entity with amount.due not "0"

list entity with birthday before "1/2/62"

list entity with age gt "21"

list entity with no zip

list invoices with every amount > "0"
Warnings
Compatibility D3 7.0 AP R83
reformat Index Level retrieval scheme