Skip to main content
Querying in ClickHouse CloudThe data in this system table is held locally on each node in ClickHouse Cloud. Obtaining a complete view of all data, therefore, requires the clusterAllReplicas function. See here for further details.

Description

Shows the content of the query cache.

Columns

  • query (String) — Query string.
  • query_id (String) — ID of the query.
  • is_subquery (UInt8) — Whether the query cache entry is a subquery result.
  • result_size (UInt64) — Size of the query cache entry.
  • tag (LowCardinality(String)) — Tag of the query cache entry.
  • stale (UInt8) — If the query cache entry is stale.
  • shared (UInt8) — If the query cache entry is shared between multiple users.
  • compressed (UInt8) — If the query cache entry is compressed.
  • expires_at (DateTime) — When the query cache entry becomes stale.
  • key_hash (UInt64) — A hash of the query string, used as a key to find query cache entries.

Example

Last modified on July 2, 2026