> ## 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.

> サーバーがサポートするDictionaryレイアウトの一覧と、それぞれの組み込みドキュメントを含むシステムテーブル。

# system.dictionary_layouts

<div id="description">
  ## 説明
</div>

サーバーでサポートされているDictionaryレイアウトの一覧と、各レイアウトの埋め込みドキュメントが含まれています。Dictionaryレイアウトは、Dictionaryがメモリ内 (またはディスク上) にどのように格納され、どのように検索されるかを決定するもので、`CREATE DICTIONARY`クエリの`LAYOUT`句で指定します。

<div id="columns">
  ## カラム
</div>

* `name` ([String](/ja/reference/data-types/index)) — `LAYOUT` 句で指定する Dictionaryレイアウト の名前。
* `is_complex` ([UInt8](/ja/reference/data-types/index)) — その layout が複雑なキー (複数の属性で構成されるキー、または整数以外の型のキー) を必要とするかどうか。
* `description` ([String](/ja/reference/data-types/index)) — その Dictionaryレイアウト の概要説明。
* `syntax` ([String](/ja/reference/data-types/index)) — CREATE DICTIONARY クエリの `LAYOUT` 句でその layout をどのように指定するか。
* `examples` ([String](/ja/reference/data-types/index)) — 使用例。
* `introduced_in` ([String](/ja/reference/data-types/index)) — その layout が最初に導入された ClickHouse のバージョン。形式は major.minor。
* `related` ([Array(String)](/ja/reference/data-types/index)) — 関連する Dictionaryレイアウト の名前。

<div id="example">
  ## 例
</div>

```sql title="Query" theme={null}
SELECT name, is_complex, syntax
FROM system.dictionary_layouts
WHERE name IN ('flat', 'hashed', 'complex_key_hashed')
ORDER BY name
```

```text title="Response" theme={null}
┌─name───────────────┬─is_complex─┬─syntax───────────────────────────────────────────────────┐
│ complex_key_hashed │          1 │ LAYOUT(COMPLEX_KEY_HASHED())                             │
│ flat               │          0 │ LAYOUT(FLAT([INITIAL_ARRAY_SIZE n] [MAX_ARRAY_SIZE n]))  │
│ hashed             │          0 │ LAYOUT(HASHED())                                         │
└────────────────────┴────────────┴──────────────────────────────────────────────────────────┘
```

<div id="see-also">
  ## 関連項目
</div>

* [Dictionaryレイアウト](/ja/reference/statements/create/dictionary/layouts/overview) — Dictionaryとそのレイアウトに関する情報。
