ClickHouse/docs/en/operations/system-tables/one.md

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

25 lines
450 B
Markdown
Raw Normal View History

2022-08-28 13:53:52 +00:00
---
2022-08-28 13:58:27 +00:00
slug: /en/operations/system-tables/one
2022-08-28 13:53:52 +00:00
---
2022-06-02 10:55:18 +00:00
# one
This table contains a single row with a single `dummy` UInt8 column containing the value 0.
2021-05-27 19:44:11 +00:00
This table is used if a `SELECT` query does not specify the `FROM` clause.
This is similar to the `DUAL` table found in other DBMSs.
**Example**
```sql
SELECT * FROM system.one LIMIT 10;
```
```text
┌─dummy─┐
│ 0 │
└───────┘
2021-07-29 15:20:55 +00:00
1 rows in set. Elapsed: 0.001 sec.
```