[]
This function calculates bitwise AND of the two specified values.
BITAND(value1, value2)
This function has these arguments:
Argument | Description |
|---|---|
value1 | [Required] First decimal number greater than or equal to 0 |
value1 | [Required] Second decimal number greater than or equal to 0 |
In this function, If the bits of both parameters at the same position are 1, then that bit position is counted.
BITAND(3,6) gives the result 2.
BITAND(4,5) gives the result 4.