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

# NOT LIKE

#### `<expression> NOT LIKE <value>`

## Description

Corresponds to the SQL NOT LIKE operation, which matches `<expression>` with `<value>` using `%` as a wildcard. This functionality can be replicated using the `STARTS WITH`, `ENDS WITH`, and `CONTAINS` operators. `<expression>` can be `<table>.<column>` or `AGG(<table>.<column>, <start>, <end>)`.

This operator can only be applied to `text` columns.

### Example

```Text PQL
LAST(LOAN.STATUS, 0, 30) NOT LIKE '%DENIED'
```