PostgreSQL/Postgre SQL/Decode — различия между версиями

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

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

Decode binary string from string previously encoded with encode

postgres=# -- decode(string text, type text)
postgres=# -- Decode binary string from string previously encoded with encode.
postgres=# -- Parameter type is same as in encode.
postgres=# select decode("123\\000456", "escape")
postgres-#
postgres-# ;
   decode
------------
 123\000456
(1 row)
postgres=#