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

> 모든 테이블에 존재하는 데이터 스키핑 인덱스 정보를 담고 있는 시스템 테이블.

# system.data_skipping_indices

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

모든 테이블에 있는 데이터 스키핑 인덱스에 대한 정보를 포함합니다.

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

* `database` ([String](/ko/reference/data-types)) — 데이터베이스 이름.
* `table` ([String](/ko/reference/data-types)) — 테이블 이름.
* `name` ([String](/ko/reference/data-types)) — 인덱스 이름.
* `type` ([String](/ko/reference/data-types)) — 인덱스 유형.
* `type_full` ([String](/ko/reference/data-types)) — CREATE 문에 있는 인덱스 유형 표현식.
* `expr` ([String](/ko/reference/data-types)) — 인덱스 계산용 표현식.
* `creation` ([Enum8('Explicit' = 0, 'Implicit' = 1)](/ko/reference/data-types)) — 인덱스가 암시적으로 생성되었는지 여부 (`add&#95;minmax&#95;index&#95;for&#95;numeric&#95;columns` 또는 이와 유사한 방식)
* `granularity` ([UInt64](/ko/reference/data-types)) — 블록 내 그래뉼 수.
* `data_compressed_bytes` ([UInt64](/ko/reference/data-types)) — 압축된 데이터의 크기(바이트).
* `data_uncompressed_bytes` ([UInt64](/ko/reference/data-types)) — 압축 해제된 데이터의 크기(바이트).
* `marks_bytes` ([UInt64](/ko/reference/data-types)) — 마크의 크기(바이트).

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

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

```text theme={null}
Row 1:
──────
database:                default
table:                   user_actions
name:                    clicks_idx
type:                    minmax
type_full:               minmax
expr:                    clicks
creation:                Explicit
granularity:             1
data_compressed_bytes:   58
data_uncompressed_bytes: 6
marks_bytes:             48

Row 2:
──────
database:                default
table:                   users
name:                    contacts_null_idx
type:                    minmax
type_full:               minmax
expr:                    assumeNotNull(contacts_null)
creation:                Explicit
granularity:             1
data_compressed_bytes:   58
data_uncompressed_bytes: 6
marks_bytes:             48
```
