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

> Documentação do tipo de dado especial Nothing

# Nothing

A única finalidade deste tipo de dado é representar casos em que não se espera um valor. Portanto, não é possível criar um valor do tipo `Nothing`.

Por exemplo, o literal [NULL](/pt-BR/reference/syntax#null) é do tipo `Nullable(Nothing)`. Veja mais sobre [Nullable](/pt-BR/reference/data-types/nullable).

O tipo `Nothing` também pode ser usado para denotar arrays vazios:

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

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