你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn。
binary_shift_left()
Applies to: ✅ Microsoft Fabric ✅ Azure Data Explorer ✅ Azure Monitor ✅ Microsoft Sentinel
Returns binary shift left operation on a pair of numbers.
Syntax
binary_shift_left(
value,
shift)
Learn more about syntax conventions.
Parameters
Name | Type | Required | Description |
---|---|---|---|
value | int |
✔️ | The value to shift left. |
shift | int |
✔️ | The number of bits to shift left. |
Returns
Returns binary shift left operation on a pair of numbers: value << (shift%64). If n is negative, a NULL value is returned.
Example
binary_shift_left(1,2)
Output
Result |
---|
4 |