Syntax
Description
The unsigned right shift operator shifts a zero into the leftmost position.
Examples
Column1 | Column2 | URSHIFT returns |
---|---|---|
-1 | 2 | 4,611,686,018,427,387,903 |
5 | -20 | 0 |
-20 | -10 | 1,023 |
32 | 3 | 4 |
5 | 28 | 0 |
The unsigned right shift operator shifts a zero into the leftmost position.
Column1 | Column2 | URSHIFT returns |
---|---|---|
-1 | 2 | 4,611,686,018,427,387,903 |
5 | -20 | 0 |
-20 | -10 | 1,023 |
32 | 3 | 4 |
5 | 28 | 0 |