Skip to content

Shifts the bits of a numeric value to the left by a specified number of positions.

func.bit_shift_left(<value>, <shift>)
func.bit_shift_left(1, 4)
┌────┐
16
└────┘
BIT_SHIFT_LEFT(<value>, <shift>)
SELECT BIT_SHIFT_LEFT(1, 4);
┌────┐
16
└────┘