CACHE SELECT

Applies to: check marked yes Databricks SQL check marked yes Databricks Runtime

Caches the data accessed by the specified simple SELECT query in the disk cache. You can choose a subset of columns to be cached by providing a list of column names and choose a subset of rows by providing a predicate. This enables subsequent queries to avoid scanning the original files as much as possible. This construct is applicable only to Delta tables and Parquet tables. Views are also supported, but the expanded queries are restricted to the simple queries, as described above.

Syntax

CACHE SELECT column_name [, ...] FROM table_name [ WHERE boolean_expression ]

See Automatic and manual caching for the differences between disk caching and the Apache Spark cache.

Parameters

Examples

CACHE SELECT * FROM boxes
CACHE SELECT width, length FROM boxes WHERE height=3