> ## Documentation Index
> Fetch the complete documentation index at: https://private-7c7dfe99-mintlify-8c05c8a2.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` 函数。更多详情请参见[此处](/zh/reference/system-tables/overview#system-tables-in-clickhouse-cloud)。
</Info>

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

显示[查询条件缓存](/zh/concepts/features/performance/caches/query-condition-cache)的内容。

<div id="columns">
  ## 列
</div>

* `key_hash` ([UInt128](/zh/reference/data-types/index)) — (table\_uuid, part\_name, condition\_hash) 的哈希值。
* `entry_size` ([UInt64](/zh/reference/data-types/index)) — 条目大小 (以字节为单位) 。
* `matching_marks` ([String](/zh/reference/data-types/index)) — 匹配到的标记。

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