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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

12 lines
370 B
Markdown
Raw Normal View History

2020-04-03 13:23:32 +00:00
---
2022-08-28 14:53:34 +00:00
slug: /en/engines/table-engines/special/view
sidebar_position: 90
sidebar_label: View
2020-04-03 13:23:32 +00:00
---
2022-06-02 10:55:18 +00:00
# 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).
2023-01-09 14:13:36 +00:00