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

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

34 lines
647 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/numbers_mt
2022-08-28 13:53:52 +00:00
---
2022-06-02 10:55:18 +00:00
# numbers_mt
The same as [system.numbers](../../operations/system-tables/numbers.md) but reads are parallelized. The numbers can be returned in any order.
Used for tests.
**Example**
```sql
:) SELECT * FROM system.numbers_mt LIMIT 10;
```
```text
┌─number─┐
│ 0 │
│ 1 │
│ 2 │
│ 3 │
│ 4 │
│ 5 │
│ 6 │
│ 7 │
│ 8 │
│ 9 │
└────────┘
2021-07-29 15:20:55 +00:00
10 rows in set. Elapsed: 0.001 sec.
```
[Original article](https://clickhouse.com/docs/en/operations/system-tables/numbers_mt) <!--hide-->