# after operator

The after relational operator represents
a *greater than* condition used in constructing selection clauses.
The gt and > operators perform
the same function.

**Synonyms:** gt, >

## Syntax

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

## Example(s)

```
list customers with name after "c"
```

```
list customers with amount.due > "900"
```

```
sort customers with last.purchase gt "1/1/93"
```

## See also

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

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