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