Help wanted!
The following content of this documentation page has been machine-translated. But unlike other websites, it is not done on the fly. This translated text lives on GitHub repository alongside main ClickHouse codebase and waits for fellow native speakers to make it more human-readable. You can also use the original English version as a reference.
Nada
El único propósito de este tipo de datos es representar casos en los que no se espera un valor. Entonces no puedes crear un Nothing
valor de tipo.
Por ejemplo, literal NULL tiene tipo de Nullable(Nothing)
. Ver más sobre NULL.
El Nothing
tipo puede también se utiliza para denotar matrices vacías:
SELECT toTypeName(array())
┌─toTypeName(array())─┐
│ Array(Nothing) │
└─────────────────────┘