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

31 lines
622 B
Markdown
Raw Normal View History

# system.numbers_mt {#system-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.
```
2021-06-24 12:47:02 +00:00
[Original article](https://clickhouse.tech/docs/en/operations/system-tables/numbers_mt) <!--hide-->