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 SMALLINT
. This function is a synonym for CAST(expr AS SMALLINT)
. See cast
function for details.
smallint(expr)
expr
: Any expression which is castable toSMALLINT
.
The result is SMALLINT
.
> SELECT smallint(-5.6);
5
> SELECT smallint('5');
5