DSQL, PSQL
Possible name conflict
YES →
Syntax
Result type
SMALLINT
, INTEGER
or BIGINT
|
Description
Returns the result of the bitwise AND operation on the argument(s).
See also
8.6.2. BIN_NOT()
Available in
DSQL, PSQL
Possible name conflict
NO
Syntax
BIN_NOT (number)
Parameter | Description |
---|---|
number | Any integer number (literal, smallint/integer/bigint, numeric/decimal with scale 0) |
Result type
SMALLINT
, or BIGINT
Description
Returns the result of the bitwise NOT operation on the argument, i.e. ones complement.
See also
Available in
DSQL, PSQL
Possible name conflict
YES →
Syntax
Parameter | Description |
---|---|
number | Any integer number (literal, smallint/integer/bigint, numeric/decimal with scale 0) |
Result type
SMALLINT
, INTEGER
or BIGINT
|
Description
Returns the result of the bitwise OR operation on the argument(s).
See also
8.6.4. BIN_SHL()
Available in
DSQL, PSQL
Syntax
BIN_SHL (number, shift)
Result type
BIGINT
Description
Returns the first argument bitwise left-shifted by the second argument, i.e. a << b
or a·2b
.
See also
Available in
DSQL, PSQL
Syntax
Parameter | Description |
---|---|
number | A number of an integer type |
shift | The number of bits the number value is shifted by |
Result type
BIGINT
Description
Returns the first argument bitwise right-shifted by the second argument, i.e. a >> b
or a/2b
.
See also
8.6.6. BIN_XOR()
Available in
DSQL, PSQL
Possible name conflict
YES →
Syntax
BIN_XOR (number, number [, number ...])
Parameter | Description |
---|---|
number | Any integer number (literal, smallint/integer/bigint, numeric/decimal with scale 0) |
Result type
SMALLINT
, INTEGER
or BIGINT
Description
Returns the result of the bitwise XOR operation on the argument(s).
See also