> ## Documentation Index
> Fetch the complete documentation index at: https://kumo.ai/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# LIKE

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

## Description

Corresponds to the SQL 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

<CodeGroup>
  ```Text PQL theme={null}
  LAST(LOAN.STATUS, 0, 30) LIKE '%SUCCESS'
  ```
</CodeGroup>
