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
Returns a bitwise left shifted by n
bits.
Syntax
shiftleft(expr, n)
Arguments
expr
: AnINTEGER
orBIGINT
expression.n
: AnINTEGER
expression.
Returns
The result matches the type of expr
.
If n
is less than 0 the result is 0.
Examples
> SELECT shiftleft(2, 1);
4