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

> Documentación del tipo de dato especial Nothing

# Nothing

El único propósito de este tipo de dato es representar casos en los que no se espera ningún valor. Por lo tanto, no se puede crear un valor de tipo `Nothing`.

Por ejemplo, el literal [NULL](/es/reference/syntax#null) es de tipo `Nullable(Nothing)`. Consulta más información sobre [Nullable](/es/reference/data-types/nullable).

El tipo `Nothing` también se puede usar para denotar arrays vacíos:

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

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