หมายเหตุ
การเข้าถึงหน้านี้ต้องได้รับการอนุญาต คุณสามารถลอง ลงชื่อเข้าใช้หรือเปลี่ยนไดเรกทอรีได้
การเข้าถึงหน้านี้ต้องได้รับการอนุญาต คุณสามารถลองเปลี่ยนไดเรกทอรีได้
Applies to: ✅ Microsoft Fabric ✅ Azure Data Explorer ✅ Azure Monitor ✅ Microsoft Sentinel
Performs a binary shift right operation on a pair of numbers.
Syntax
binary_shift_right(value,shift)
Learn more about syntax conventions.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
| value | int |
✔️ | The value to shift right. |
| shift | int |
✔️ | 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 |