Back to Influxdb

SQL bitwise operators

content/influxdb3/enterprise/reference/sql/operators/bitwise.md

latest482 B
Original Source

---: | :------------------ | :------- | -----: | | & | Bitwise and | 5 & 3 | 1 | | \| | Bitwise or | 5 \| 3 | 7 | | ^ | Bitwise xor | 5 ^ 3 | 6 | | >> | Bitwise shift right | 5 >> 3 | 0 | | << | Bitwise shift left | 5 << 3 | 40 |

source: /shared/sql-reference/operators/bitwise.md

<!-- The content of this page is at /content/shared/sql-reference/operators/bitwise.md -->