Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Applies to: Databricks SQL
Databricks Runtime
Casts the value expr
to DOUBLE. This function is a synonym for CAST(expr AS DOUBLE)
. See cast
function for details.
double(expr)
expr
: An expression that can be cast to DOUBLE.
A DOUBLE.
> SELECT double('5.2');
1.2