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

> 0부터 시작하는 거의 모든 자연수를 담은 `number`라는 이름의 단일 UInt64 컬럼이 있는 시스템 테이블입니다.

# system.numbers

<div id="description">
  ## 설명
</div>

이 테이블은 `number`라는 이름의 단일 UInt64 컬럼을 포함하며, 0부터 시작하는 거의 모든 자연수를 담고 있습니다.

이 테이블은 테스트용으로 사용하거나, 무차별 대입 검색이 필요할 때 사용할 수 있습니다.

이 테이블의 읽기 작업은 병렬화되지 않습니다.

<div id="columns">
  ## 컬럼
</div>

{/*AUTOGENERATED_END*/}

<div id="example">
  ## 예시
</div>

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

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

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

프레디케이트를 사용해 출력도 제한할 수 있습니다.

```sql theme={null}
SELECT * FROM system.numbers WHERE number < 10;
```

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

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