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

# AND

#### `<expression_A> AND <expression_B>`

## Description

Allows joining multiple filter expressions with a CONJUNCTION operator. Each `<expression>` must itself be a filter operation.

This operator is supported for all filter fields and targets.

### Example

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