binary_shift_left()

Learn how to use the binary_shift_left() function to perform a binary shift left operation on a pair of numbers.

Returns binary shift left operation on a pair of numbers.

Syntax

binary_shift_left(value,shift)

Parameters

NameTypeRequiredDescription
valueint✔️The value to shift left.
shiftint✔️The number of bits to shift left.

Returns

Returns binary shift left operation on a pair of numbers: value « (shift%64). If n is negative, a NULL value is returned.

Example

binary_shift_left(1,2)

Output

Result
4