BIT_SHIFT_LEFT

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

Analyze Syntax

func.bit_shift_left(<value>, <shift>)

Analyze Examples

func.bit_shift_left(1, 4)

┌────┐
 16  
└────┘

SQL Syntax

BIT_SHIFT_LEFT(<value>, <shift>)

SQL Examples

SELECT BIT_SHIFT_LEFT(1, 4);

┌────┐
 16  
└────┘