> ## Documentation Index
> Fetch the complete documentation index at: https://private-7c7dfe99-mintlify-fbfa8bee.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

> 모든 테이블에 존재하는 프로젝션에 대한 정보를 포함하는 시스템 테이블.

# system.projections

<div id="description">
  ## 설명
</div>

모든 테이블에 있는 기존 프로젝션 정보를 포함합니다.

<div id="columns">
  ## 컬럼
</div>

* `database` ([String](/ko/reference/data-types/index)) — 데이터베이스 이름.
* `table` ([String](/ko/reference/data-types/index)) — 테이블 이름.
* `name` ([String](/ko/reference/data-types/index)) — PROJECTION 이름.
* `type` ([Enum8('Normal' = 0, 'Aggregate' = 1)](/ko/reference/data-types/index)) — PROJECTION 유형.
* `sorting_key` ([Array(String)](/ko/reference/data-types/index)) — PROJECTION 정렬 키.
* `query` ([String](/ko/reference/data-types/index)) — PROJECTION 쿼리.
* `settings` ([Map(String, String)](/ko/reference/data-types/index)) — PROJECTION 설정.

<div id="example">
  ## 예시
</div>

```sql theme={null}
SELECT * FROM system.projections LIMIT 2 FORMAT Vertical;
```

```text theme={null}
Row 1:
──────
database:    default
table:       landing
name:        improved_sorting_key
type:        Normal
sorting_key: ['user_id','date']
query:       SELECT * ORDER BY user_id, date
settings:     {}

Row 2:
──────
database:    default
table:       landing
name:        agg_no_key
type:        Aggregate
sorting_key: []
query:       SELECT count()
settings:     {}
```
