> ## 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.

> 仅包含一行且只有一个 `dummy` UInt8 列的系统表，该列的值为 0。类似于其他 DBMSs 中的 `DUAL` 表。

# system.one

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

此表仅包含一行数据，且只有一个值为 0 的 `dummy` UInt8 列。

如果 `SELECT` 查询未指定 `FROM` 子句，则使用此表。

这类似于其他 DBMSs 中的 `DUAL` 表。

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

{/*AUTOGENERATED_END*/}

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

```sql theme={null}
SELECT * FROM system.one LIMIT 10;
```

```response theme={null}
┌─dummy─┐
│     0 │
└───────┘

1 rows in set. Elapsed: 0.001 sec.
```
