binary_all_and() (aggregation function)
Learn how to use the binary_all_and() function to aggregate values using the binary AND operation.
Accumulates values using the binary AND
operation for each summarization group, or in total if a group isn’t specified.
Syntax
binary_all_and
(
expr)
Parameters
Name | Type | Required | Description |
---|---|---|---|
expr | long | ✔️ | The value used for the binary AND calculation. |
Returns
Returns an aggregated value using the binary AND
operation over records for each summarization group, or in total if a group isn’t specified.
Example
The following example produces CAFEF00D
using binary AND
operations:
datatable(num:long)
[
0xFFFFFFFF,
0xFFFFF00F,
0xCFFFFFFD,
0xFAFEFFFF,
]
| summarize result = toupper(tohex(binary_all_and(num)))
Output
result |
---|
CAFEF00D |
Related content
- Aggregation function types at a glance
- binary_all_or() (aggregation function)
- binary_all_xor() (aggregation function)
- binary_and()
Feedback
Was this page helpful?
Glad to hear it! Please tell us how we can improve.
Sorry to hear that. Please tell us how we can improve.