# 에어브릿지 필터 연산자 Appendix

### Actual 리포트

<table><thead><tr><th width="248">연산자</th><th>설명</th></tr></thead><tbody><tr><td>IN</td><td>같다</td></tr><tr><td>NOT IN</td><td>같지 않다</td></tr><tr><td>LIKE</td><td>포함한다</td></tr><tr><td>NOT LIKE</td><td>포함하지 않는다</td></tr><tr><td>EXIST</td><td>값이 존재한다</td></tr><tr><td>NOT EXIST</td><td>값이 존재하지 않는다</td></tr></tbody></table>

IN/NOT IN(같다)

* 선택한 그룹바이(컬럼)의 값들 중에서, 입력한 값과 일치하는 값들만 필터링해 수집/수집 제외합니다.
* 필터링할 값에 여러 항목을 입력할 수 있습니다.

> 예를 들어, 필터를 추가할 그룹바이를 선택하고

LIKE/NOT LIKE

* 선택한 그룹바이의 값들 중에서, 입력한 값을 포함하는 값들을 수집/수집 제외합니다.
* 하나의 값만 입력할 수 있습니다.

{% hint style="warning" %}
and 조건만 가능하기에, 여러 항목을 입력할 경우 아무것도 수집되지 않습니다.
{% endhint %}

EXIST/NOT EXIST

* 선택한 그룹바이에 대해 비어있는/비어있지 않은 값만 수집합니다.
* 데이터센터의 '비어있음/비어있지 않음 필터'와 유사한 기능입니다.

### RAW (APP/WEB 공통)

<table><thead><tr><th width="248">연산자</th><th>설명</th></tr></thead><tbody><tr><td>equal</td><td>같다</td></tr><tr><td>not_equal</td><td>같지 않다</td></tr><tr><td>in</td><td>포함한다</td></tr><tr><td>not_in</td><td>포함하지 않는다</td></tr><tr><td>exist</td><td>값이 존재한다</td></tr><tr><td>not_exist</td><td>값이 존재하지 않는다</td></tr><tr><td>lt</td><td>작다</td></tr><tr><td>lte</td><td>작거나 같다</td></tr><tr><td>gt</td><td>크다</td></tr><tr><td>gte</td><td>크거나 같다</td></tr><tr><td>between</td><td>사이에 있다</td></tr></tbody></table>

#### equal/not\_equal

* 선택한 그룹바이(컬럼)의 값들 중에서, 입력한 값과 일치하는 값들만 필터링해 수집/수집 제외합니다.
* 하나의 값만 입력할 수 있습니다.

#### in/not\_in

* 선택한 그룹바이의 값들 중에서, 입력한 값을 포함하는 값들을 수집/수집 제외합니다.
* 여러 개의 값을 입력할 수 있습니다.

#### exist/not\_exist

* 선택한 그룹바이에 대해 비어있는/비어있지 않은 값만 수집합니다.
* 데이터센터의 '비어있음/비어있지 않음 필터'와 유사한 기능입니다.

#### lt/lte

* 선택한 그룹바이의 값들 중 입력한 값보다 작은/작거나 같은 값만 수집합니다.
* 값에는 숫자만 입력 가능합니다.

#### gt/gte

* 선택한 그룹바이의 값들 중 입력한 값보다 큰/크거나 같은 값만 수집합니다.
* 값에는 숫자만 입력 가능합니다.

#### between

* 현재 Xpert에서 지원되지 않습니다.
* lt/lte와 gt/gte를 함께 사용해 같은 결과를 구현할 수 있습니다.


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://help.xpert.lever.me/asset_mgmt/add/appendix.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
