ClickHouse/docs/en/engines/table-engines/special/view.md
2022-06-02 04:55:18 -06:00

11 lines
426 B
Markdown

---
sidebar_position: 90
sidebar_label: View
---
# View Table Engine
Used for implementing views (for more information, see the `CREATE VIEW query`). It does not store data, but only stores the specified `SELECT` query. When reading from a table, it runs this query (and deletes all unnecessary columns from the query).
[Original article](https://clickhouse.com/docs/en/operations/table_engines/special/view/) <!--hide-->