> For clean Markdown of any page, append .md to the page URL.
> For a complete documentation index, see https://docs.nvidia.com/sdgm/llms.txt.
> For AI client integration (Claude Code, Cursor, etc.), connect to the MCP server at https://docs.nvidia.com/sdgm/_mcp/server.

# =

#### `<expression> = <value>`

## Description

Implements the EQUAL TO operator. `<expression>` can be `<table>.<column>` or `AGG(<table>.<column>, <start>, <end>)`.

This operator can be applied to columns of all types. The constant data type needs to match the aggregation/column data type.

### Example

```Text PQL
LAST(LOAN.AMOUNT, 0, 30) = 0
```