Getting started
User guides
Administration guides
Reference guides
Resources
Updated May 13, 2022
Send us feedback
VOID
Represents the untyped NULL value
{ NULL | VOID }
The only value the VOID type can hold is NULL.
NULL
> SELECT typeof(NULL); VOID > SELECT cast(NULL AS VOID); VOID
cast function (Databricks SQL)