binary_shift_right()
適用於:✅Microsoft網狀架構✅Azure 數據✅總管 Azure 監視器✅Microsoft Sentinel
傳回一對數位的二進位右移運算。
語法
binary_shift_right(
value,
shift)
深入瞭解 語法慣例。
參數
姓名 | 類型 | 必要 | Description |
---|---|---|---|
value | int |
✔️ | 要向右移的值。 |
shift | int |
✔️ | 要向右移位的位數。 |
傳回
傳回一對數位的二進位右運算:value >> (shift%64)。 如果 n 為負數,則會傳回 NULL 值。
範例
binary_shift_right(1,2)
輸出
結果 |
---|
0 |