> ## Documentation Index
> Fetch the complete documentation index at: https://private-7c7dfe99-mintlify-8a08bda2.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

> System table similar to `system.numbers` but reads are parallelized and numbers can be returned in any order.

# system.numbers_mt

<h2 id="description">
  Description
</h2>

The same as [`system.numbers`](/reference/system-tables/numbers) but reads are parallelized. The numbers can be returned in any order.

Used for tests.

<h2 id="columns">
  Columns
</h2>

{/*AUTOGENERATED_END*/}

<h2 id="example">
  Example
</h2>

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

```response theme={null}
┌─number─┐
│      0 │
│      1 │
│      2 │
│      3 │
│      4 │
│      5 │
│      6 │
│      7 │
│      8 │
│      9 │
└────────┘

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