binary_shift_right()

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

Returns binary shift right operation on a pair of numbers.

Syntax

binary_shift_right(value,shift)

Parameters

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

Returns

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

Examples

binary_shift_right(1,2)

Output

Result
0