Bitwise

Bitwise Operations #

Following bitwise operations are supported:

INT only #

  • expr | expr
  • expr & expr
  • expr ^ expr
  • expr « expr
  • expr » expr
  • ~expr

Any operation with NULL value produce NULL.


select 1 << 4;
[16]