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

> `system.numbers` に似たシステムテーブルですが、読み取りは並列化されており、数値は順不同で返される場合があります。

# system.numbers_mt

<div id="description">
  ## 説明
</div>

[`system.numbers`](/ja/reference/system-tables/numbers) と同じですが、読み取りが並列化されています。数値は任意の順序で返されることがあります。

テストで使用されます。

<div id="columns">
  ## カラム
</div>

{/*AUTOGENERATED_END*/}

<div id="example">
  ## 例
</div>

```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.
```
