9.5. Binary String Functions and Operators
This section describes functions and operators for examining and manipulating values of typebytea
.
SQL defines some string functions that use key words, rather than commas, to separate arguments. Details are inTable 9.11.Postgres Pro also provides versions of these functions that use the regular function invocation syntax (seeTable 9.12).
Note
The sample results shown on this page assume that the server parameterbytea_output
is set toescape
(the traditional Postgres Pro format).
Table 9.11. SQL Binary String Functions and Operators
Additional binary string manipulation functions are available and are listed inTable 9.12. Some of them are used internally to implement theSQL-standard string functions listed inTable 9.11.
Table 9.12. Other Binary String Functions
get_byte
andset_byte
number the first byte of a binary string as byte 0.get_bit
andset_bit
number bits from the right within each byte; for example bit 0 is the least significant bit of the first byte, and bit 15 is the most significant bit of the second byte.
See also the aggregate functionstring_agg
inSection 9.20 and the large object functions inSection 32.4.