PostgreSQL/Math Functions/md5 — различия между версиями

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

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

Calculates the MD5 hash of string, returning the result in hexadecimal

postgres=#
postgres=# -- md5(string)
postgres=# --Calculates the MD5 hash of string, returning the result in hexadecimal
postgres=# select md5("A\\000oB"::bytea);
               md5
----------------------------------
 1160190c6528db499b50394519f167c4
(1 row)
postgres=#