PostgreSQL/String Functions/set byte — различия между версиями

Материал из SQL эксперт
Перейти к: навигация, поиск
м (1 версия)
 
(нет различий)

Текущая версия на 10:13, 26 мая 2010

set_byte(string, offset, newvalue)

postgres=#
postgres=# -- set_byte(string, offset, newvalue)
postgres=# -- Set byte in string
postgres=#
postgres=# select set_byte("Th\\000omas"::bytea, 4, 64);
  set_byte
------------
 Th\000o@as
(1 row)
postgres=#
postgres=#