> 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.

# IN

#### `<expression> IN <value>`

## Description

Evaluates to True if the value returned by `<expression>` is included in `<value>` as an element at any point. `<expression>` can be `<table>.<column>` or `AGG(<table>.<column>, <start>, <end>)`.

### Example

```Text PQL
LOAN.STATUS IN ('A', 'C')
```