> ## Documentation Index
> Fetch the complete documentation index at: https://private-7c7dfe99-mintlify-8a08bda2.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` 함수를 사용해야 합니다. 자세한 내용은 [여기](/ko/reference/system-tables/overview#system-tables-in-clickhouse-cloud)를 참조하십시오.
</Info>

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

[쿼리 조건 캐시](/ko/concepts/features/performance/caches/query-condition-cache)의 콘텐츠를 표시합니다.

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

* `key_hash` ([UInt128](/ko/reference/data-types)) — (table\_uuid, part\_name, condition\_hash)의 해시값입니다.
* `entry_size` ([UInt64](/ko/reference/data-types)) — 항목 크기(바이트)입니다.
* `matching_marks` ([String](/ko/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 -- 5.46 quintillion
entry_size:     40
matching_marks: 111111110000000000000000000000000000000000000000000000000111111110000000000000000

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