# ge operator

The ge relational operator represents
a *greater than or equal to* condition used in constructing selection
clauses.

**Synonyms:** >=

## Syntax

```
with {not} attr.name ge "valuestring"
```

## Example(s)

```
list jobs with user = "dm"list invoices with amount ge "0"
```

```
list invoices with amount >= "0"
"’u’Total Due" roll-on company roll-on salesman det-supp
```

## See also

- [Relational operators and logical clauses](https://d3codex.com/access/relational-operators-and-logical-clauses/)

---
Source: https://d3codex.com/access/ge-operator/ - part of the D3Codex reference.
