BIT_SHIFT_LEFT (Lakehouse v2)
Shifts the bits of a numeric value to the left by a specified number of positions.
Analyze Syntax
Section titled “Analyze Syntax”func.bit_shift_left(<value>, <shift>)Analyze Examples
Section titled “Analyze Examples”func.bit_shift_left(1, 4)
┌────┐│ 16 │└────┘SQL Syntax
Section titled “SQL Syntax”BIT_SHIFT_LEFT(<value>, <shift>)SQL Examples
Section titled “SQL Examples”SELECT BIT_SHIFT_LEFT(1, 4);
┌────┐│ 16 │└────┘