> ## Documentation Index
> Fetch the complete documentation index at: https://private-7c7dfe99-mintlify-8c05c8a2.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`](/ko/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.
```
