# le operator

The le operator selects items whose
specified attribute name contains a value less than or equal to the
specified value string.

**Synonyms:** <=

## Syntax

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

## Example(s)

```
select invoices with amount.due le "0"
```

```
select invoices with amount.due <= "0"
```

## See also

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

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