หมายเหตุ
การเข้าถึงหน้านี้ต้องได้รับการอนุญาต คุณสามารถลอง ลงชื่อเข้าใช้หรือเปลี่ยนไดเรกทอรีได้
การเข้าถึงหน้านี้ต้องได้รับการอนุญาต คุณสามารถลองเปลี่ยนไดเรกทอรีได้
Applies to: ✅ Microsoft Fabric ✅ Azure Data Explorer ✅ Azure Monitor ✅ Microsoft Sentinel
Performs a bitwise AND operation on two values.
Syntax
binary_and(value1,value2)
Learn more about syntax conventions.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
| value1 | long |
✔️ | The left-hand value of the bitwise AND operation. |
| value2 | long |
✔️ | The right-hand value of the bitwise AND operation. |
Returns
Returns the result of a bitwise AND operation between value1 and value2.
Examples
print result = binary_and(6, 3)
Output:
2