Skip to main content

RSHIFT

Categories: Bitwise

RSHIFT

Shifts the bits of the numeric expression to he right.

Syntax

RSHIFT(expression1 int32, expression2 int32) → int32

  • expression1: Integer to shift.
  • expression2: The number of bits to shift by.

Examples

RSHIFT example
select RSHIFT(1,1)
-- 0

RSHIFT(expression1 int64, expression2 int64) → int64

  • expression1: Integer to shift.
  • expression2: The number of bits to shift by.

Examples

RSHIFT example
sample call 1
-- sample return 1