BITOR int1 int2 (BITOR int1 int2 int3 ...)
int1
int2
int3
...
Outputs the bitwise OR of its inputs, which must be integers. If no inputs are given, then BITOR outputs a value with no bits set.
SHOW BITOR 5 2 7 SHOW BITOR 5 1 5 SHOW (BITOR 6 2 10) 14
SHOW BITOR 5 2
SHOW BITOR 5 1
SHOW (BITOR 6 2 10)