> ## 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](/ja/reference/data-types)) — データベース名。
* `table` ([String](/ja/reference/data-types)) — テーブル名。
* `name` ([String](/ja/reference/data-types)) — 索引名。
* `type` ([String](/ja/reference/data-types)) — 索引の種類。
* `type_full` ([String](/ja/reference/data-types)) — CREATEステートメント内の索引タイプ式。
* `expr` ([String](/ja/reference/data-types)) — 索引の計算式。
* `creation` ([Enum8('Explicit' = 0, 'Implicit' = 1)](/ja/reference/data-types)) — 索引が暗黙的に作成されたものかどうか (`add_minmax_index_for_numeric_columns` などを介して作成された場合)
* `granularity` ([UInt64](/ja/reference/data-types)) — ブロック内のグラニュール数。
* `data_compressed_bytes` ([UInt64](/ja/reference/data-types)) — 圧縮データのサイズ (バイト単位) 。
* `data_uncompressed_bytes` ([UInt64](/ja/reference/data-types)) — 非圧縮データのサイズ (バイト単位) 。
* `marks_bytes` ([UInt64](/ja/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
```
