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

<Info>
  **ClickHouse Cloud でのクエリ**

  このシステムテーブルのデータは、ClickHouse Cloud の各ノードにローカルに保持されています。したがって、すべてのデータを完全に把握するには、`clusterAllReplicas` 関数を使用する必要があります。詳細については、[こちら](/ja/reference/system-tables/overview#system-tables-in-clickhouse-cloud)を参照してください。
</Info>

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

[クエリ条件キャッシュ](/ja/concepts/features/performance/caches/query-condition-cache)の内容を表示します。

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

* `key_hash` ([UInt128](/ja/reference/data-types)) — (table\_uuid、part\_name、condition\_hash) のハッシュ。
* `entry_size` ([UInt64](/ja/reference/data-types)) — エントリのサイズ (バイト単位) 。
* `matching_marks` ([String](/ja/reference/data-types)) — 一致したマーク。

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

```sql title="Query" theme={null}
SELECT * FROM system.query_condition_cache FORMAT Vertical;
```

```text title="Response" theme={null}
Row 1:
──────
table_uuid:     28270a24-ea27-49f6-99cd-97b9bee976ac
part_name:      all_1_1_0
condition:      or(equals(b, 10000_UInt16), equals(c, 10000_UInt16))
condition_hash: 5456494897146899690 -- 54.6京
entry_size:     40
matching_marks: 111111110000000000000000000000000000000000000000000000000111111110000000000000000

1 row in set. Elapsed: 0.004 sec.
```
