2022-08-26 19:07:59 +00:00
|
|
|
---
|
|
|
|
slug: /zh/operations/system-tables/numbers
|
|
|
|
---
|
2021-12-26 04:26:43 +00:00
|
|
|
# system.numbers {#system-numbers}
|
2020-06-22 08:45:22 +00:00
|
|
|
|
2021-12-26 04:26:43 +00:00
|
|
|
这个表有一个名为 `number` 的 UInt64 列,包含了几乎所有从 0 开始的自然数。
|
2020-06-22 08:45:22 +00:00
|
|
|
|
2021-12-26 04:26:43 +00:00
|
|
|
你可以用这个表进行测试,或者如果你需要进行暴力搜索。
|
2020-06-22 08:45:22 +00:00
|
|
|
|
2021-12-26 04:26:43 +00:00
|
|
|
从该表的读取是不并行的。
|
2020-06-22 08:45:22 +00:00
|
|
|
|
2021-12-26 04:26:43 +00:00
|
|
|
**示例**
|
|
|
|
|
|
|
|
```sql
|
2023-01-11 13:43:51 +00:00
|
|
|
SELECT * FROM system.numbers LIMIT 10;
|
2021-12-26 04:26:43 +00:00
|
|
|
```
|
|
|
|
|
2023-01-11 14:59:23 +00:00
|
|
|
```response
|
2021-12-26 04:26:43 +00:00
|
|
|
┌─number─┐
|
|
|
|
│ 0 │
|
|
|
|
│ 1 │
|
|
|
|
│ 2 │
|
|
|
|
│ 3 │
|
|
|
|
│ 4 │
|
|
|
|
│ 5 │
|
|
|
|
│ 6 │
|
|
|
|
│ 7 │
|
|
|
|
│ 8 │
|
|
|
|
│ 9 │
|
|
|
|
└────────┘
|
|
|
|
|
|
|
|
10 rows in set. Elapsed: 0.001 sec.
|
|
|
|
```
|