VOID
type
Applies to: Databricks SQL
Databricks Runtime
Represents the untyped NULL value
Important
Delta Lake does not support the VOID
type.
{ NULL | VOID }
The only value the VOID type can hold is NULL.
NULL
> SELECT typeof(NULL);
VOID
> SELECT cast(NULL AS VOID);
VOID