ClickHouse/docs/en/sql-reference/statements/detach.md

17 lines
576 B
Markdown
Raw Normal View History

2020-07-11 11:05:49 +00:00
---
toc_priority: 43
2020-07-23 20:02:54 +00:00
toc_title: DETACH
2020-07-11 11:05:49 +00:00
---
# DETACH Statement {#detach}
Deletes information about the name table from the server. The server stops knowing about the tables existence.
``` sql
DETACH TABLE [IF EXISTS] [db.]name [ON CLUSTER cluster]
```
This does not delete the tables data or metadata. On the next server launch, the server will read the metadata and find out about the table again.
2020-07-23 20:02:54 +00:00
Similarly, a “detached” table can be re-attached using the `ATTACH` query (with the exception of system tables, which do not have metadata stored for them).