ClickHouse/docs/en/engines/table-engines/special/view.md

11 lines
432 B
Markdown
Raw Normal View History

2020-04-03 13:23:32 +00:00
---
toc_priority: 42
toc_title: View
---
2020-06-10 20:09:39 +00:00
# View Table Engine {#table_engines-view}
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).
2020-01-30 10:34:55 +00:00
[Original article](https://clickhouse.tech/docs/en/operations/table_engines/view/) <!--hide-->