SQL bitwise operators |
Bitwise operators |
Bitwise operators perform bitwise operations on bit patterns or binary numerals.
|
influxdb3_cloud_serverless |
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` |
|
/content/shared/sql-reference/operators/bitwise.md |