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 FLOAT. This function is a synonym for CAST(expr AS FLOAT)
. See cast
function for details.
float(expr)
expr
: An expression that can be cast to FLOAT.
A FLOAT.
> SELECT float('5.2');
1.2