ClickHouse/docs/ja/operations/system-tables/numbers.md

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

58 lines
1.0 KiB
Markdown
Raw Normal View History

2024-11-18 02:58:58 +00:00
---
slug: /ja/operations/system-tables/numbers
---
# numbers
このテーブルは、ゼロから始まるほぼすべての自然数を含む単一のUInt64カラム`number`を含んでいます。
このテーブルはテスト用、またはブルートフォース検索が必要な場合に使用できます。
このテーブルからの読み取りは並列化されていません。
**例**
```sql
SELECT * FROM system.numbers LIMIT 10;
```
```response
┌─number─┐
│ 0 │
│ 1 │
│ 2 │
│ 3 │
│ 4 │
│ 5 │
│ 6 │
│ 7 │
│ 8 │
│ 9 │
└────────┘
10 rows in set. Elapsed: 0.001 sec.
```
出力を条件で制限することもできます。
```sql
SELECT * FROM system.numbers < 10;
```
```response
┌─number─┐
│ 0 │
│ 1 │
│ 2 │
│ 3 │
│ 4 │
│ 5 │
│ 6 │
│ 7 │
│ 8 │
│ 9 │
└────────┘
10 rows in set. Elapsed: 0.001 sec.
```