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

> Nothing データ型のドキュメント

# Nothing

このデータ型の唯一の目的は、値が想定されないケースを表すことです。したがって、`Nothing` 型の値は作成できません。

たとえば、リテラル [NULL](/ja/reference/syntax#null) の型は `Nullable(Nothing)` です。[Nullable](/ja/reference/data-types/nullable) も参照してください。

`Nothing` 型は、空の配列を表すためにも使用できます。

```sql theme={null}
SELECT toTypeName(array())
```

```text theme={null}
┌─toTypeName(array())─┐
│ Array(Nothing)      │
└─────────────────────┘
```
