> ## 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.zeros` および `system.zeros_mt` システムテーブルに似ています。

# zeros

* `zeros(N)` – 整数 0 を `N` 回含む、単一の 'zero' カラム (UInt8) を持つテーブルを返します
* `zeros_mt(N)` – `zeros` と同じですが、複数スレッドを使用します。

この関数は、テスト目的で多数の行を生成する最速の方法として使用されます。`system.zeros` および `system.zeros_mt` システムテーブルに似ています。

以下のクエリは同等です。

```sql theme={null}
SELECT * FROM zeros(10);
SELECT * FROM system.zeros LIMIT 10;
SELECT * FROM zeros_mt(10);
SELECT * FROM system.zeros_mt LIMIT 10;
```

```response theme={null}
┌─zero─┐
│    0 │
│    0 │
│    0 │
│    0 │
│    0 │
│    0 │
│    0 │
│    0 │
│    0 │
│    0 │
└──────┘
```
