> 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 객체를 a `datatable` 구문.

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

## 예시

```kusto
datatable [
    {"name": "paul.paulson", "favorite_food": "파인애플"},
    {"name": "samantha.samson", "favorite_food": "당근"}
]
| where favorite_food == '파인애플'
```

결과:

| favorite\_food | 이름           |
| -------------- | ------------ |
| 파인애플           | 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, and the optional `goal` query parameter:

```
GET https://docs.panther.com/ko/pantherflow/operators/datatable.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

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.
