> For the complete documentation index, see [llms.txt](https://docs.panther.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.panther.com/ko/pantherflow/operators/datatable.md).

# Datatable 연산자

## 개요

라이브 Snowflake 테이블을 참조하는 대신 샘플 데이터를 테이블 소스로 제공하려면 `datatable`.

```kusto
datatable [{...}, {...}, ...]
```

해당 `datatable` 연산자는 아마 테스트 중에 가장 유용하겠지만, 다른 상황에서도 사용할 수 있습니다. 예를 들어, 다음을 수행할 `조인` 간단한 조회 테이블을 만들기 위해. 사용하는 방법의 예를 보세요 `조인` 연산자와 함께 `datatable` 에서 [조인 연산자](/ko/pantherflow/operators/join.md).

JSON은 유효한 PantherFlow이므로 JSON 객체를 다음에 복사하여 붙여넣을 수 있습니다 `datatable` 문장.

A `datatable` 다음 중 하나입니다 [사용 가능한 PantherFlow 데이터 소스](/ko/pantherflow/statements.md#data-sources) 따라서 테이블이 허용되는 모든 곳에서 사용할 수 있습니다.

## 예시

```kusto
datatable [
    {"name": "paul.paulson", "favorite_food": "pineapple"},
    {"name": "samantha.samson", "favorite_food": "carrot"}
]
| where favorite_food == 'pineapple'
```

결과:

| favorite\_food | 이름           |
| -------------- | ------------ |
| pineapple      | paul.paulson |


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## 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://docs.panther.com/ko/pantherflow/operators/datatable.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.
