| The PostgreSQL 9.0 Reference Manual - Volume 1A - SQL Language Reference
by The PostgreSQL Global Development Group Paperback (6"x9"), 454 pages ISBN 9781906966041 RRP £14.95 ($19.95) Sales of this book support the PostgreSQL project! Get a printed copy>>> |
7.6 Bit String Functions and Operators
This section describes functions and operators for examining and
manipulating bit strings, that is values of the types
bit and bit varying. Aside from the
usual comparison operators, the operators
shown in Table 7-10 can be used.
Bit string operands of &, |,
and # must be of equal length. When bit
shifting, the original length of the string is preserved, as shown
in the examples.
| Operator | Description
|
|| | concatenation e.g. B'10001' || B'011' => 10001011
|
& | bitwise AND e.g. B'10001' & B'01101' => 00001
|
| | bitwise OR e.g. B'10001' | B'01101' => 11101
|
# | bitwise XOR e.g. B'10001' # B'01101' => 11100
|
~ | bitwise NOT e.g. ~ B'10001' => 01110
|
<< | bitwise shift left e.g. B'10001' << 3 => 01000
|
>> | bitwise shift right e.g. B'10001' >> 2 => 00100
|
The following SQL-standard functions work on bit
strings as well as character strings:
,
length,
bit_length,
octet_length,
position,
substring.
overlay
The following functions work on bit strings as well as binary
strings:
,
get_bit.
When working with a bit string, these functions number the first
(leftmost) bit of the string as bit 0.
set_bit
In addition, it is possible to cast integral values to and from type
bit.
Some examples:
44::bit(10) 0000101100 44::bit(3) 100 cast(-44 as bit(12)) 111111010100 '1110'::bit(4)::integer 14
Note that casting to just “bit” means casting to
bit(1), and so will deliver only the least significant
bit of the integer.
Note: Prior to PostgreSQL 8.0, casting an integer to
bit(n)would copy the leftmostnbits of the integer, whereas now it copies the rightmostnbits. Also, casting an integer to a bit string width wider than the integer itself will sign-extend on the left.
| ISBN 9781906966041 | The PostgreSQL 9.0 Reference Manual - Volume 1A - SQL Language Reference | See the print edition |