Note
Ang pag-access sa pahinang ito ay nangangailangan ng pahintulot. Maaari mong subukang mag-sign in o magpalit ng mga direktoryo.
Ang pag-access sa pahinang ito ay nangangailangan ng pahintulot. Maaari mong subukang baguhin ang mga direktoryo.
Applies to:
Databricks SQL
Databricks Runtime
Returns a bitwise left shifted by n bits.
Syntax
shiftleft(expr, n)
Arguments
expr: AnINTEGERorBIGINTexpression.n: AnINTEGERexpression.
Returns
The result matches the type of expr.
If n is less than 0 the result is 0.
Examples
> SELECT shiftleft(2, 1);
4