docs-v2/content/influxdb3/enterprise/reference/sql/operators/bitwise.md

822 B

title list_title description menu weight list_code_example source
SQL bitwise operators Bitwise operators Bitwise operators perform bitwise operations on bit patterns or binary numerals.
influxdb3_enterprise
name parent
Bitwise operators Operators
304 | Operator | Meaning | Example | Result | | :------: | :------------------ | :------- | -----: | | `&` | 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` | /shared/sql-reference/operators/bitwise.md