PostgreSQL/String Functions/get byte — различия между версиями
Admin (обсуждение | вклад) м (1 версия) |
(нет различий)
|
Текущая версия на 10:13, 26 мая 2010
get_byte(string, offset)
postgres=#
postgres=# -- get_byte(string, offset)
postgres=# -- Extract byte from string
postgres=#
postgres=# select get_byte("Th\\000omas"::bytea, 4);
get_byte
----------
109
(1 row)
postgres=#
postgres=#