shiftleft function
Applies to:  Databricks SQL 
 Databricks Runtime
Returns a bitwise left shifted by n bits.
Syntax
shiftleft(expr, n)
Arguments
- expr: An- INTEGERor- BIGINTexpression.
- n: An- INTEGERexpression.
Returns
The result matches the type of expr.
If n is less than 0 the result is 0.
Examples
SQL
> SELECT shiftleft(2, 1);
 4