共用方式為


binary_shift_left()

適用於:✅Microsoft網狀架構Azure 數據✅總管 Azure 監視器✅Microsoft Sentinel

傳回一對數位的二進位移位左運算。

語法

binary_shift_left(value,shift)

深入瞭解 語法慣例

參數

姓名 類型​​ 必要 Description
value int ✔️ 要向左移的值。
shift int ✔️ 要向左移位的位數。

傳回

傳回一對數位的二進位移左移運算:值 << (shift%64)。 如果 n 為負數,則會傳回 NULL 值。

範例

binary_shift_left(1,2)

輸出

結果
4