> ## Documentation Index
> Fetch the complete documentation index at: https://private-7c7dfe99-fix-nav-issues.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

> 包含各个已分离表信息的系统表。

# system.detached_tables

<div id="description">
  ## 描述
</div>

包含每个已分离表的相关信息。

<div id="columns">
  ## 列
</div>

* `database` ([String](/zh/reference/data-types)) — 该表所在的数据库名称。
* `table` ([String](/zh/reference/data-types)) — 表名。
* `uuid` ([UUID](/zh/reference/data-types)) — 表的 uuid (Atomic 数据库) 。
* `metadata_path` ([String](/zh/reference/data-types)) — 该表元数据在文件系统中的路径。
* `is_permanently` ([UInt8](/zh/reference/data-types)) — 该表已被永久已分离。

<div id="example">
  ## 示例
</div>

```sql theme={null}
SELECT * FROM system.detached_tables FORMAT Vertical;
```

```text theme={null}
Row 1:
──────
database:                   base
table:                      t1
uuid:                       81b1c20a-b7c6-4116-a2ce-7583fb6b6736
metadata_path:              /var/lib/clickhouse/store/461/461cf698-fd0b-406d-8c01-5d8fd5748a91/t1.sql
is_permanently:             1
```
