MySQL Tutorial/Encryption Compression Functions/DECODE — различия между версиями
Admin (обсуждение | вклад) м (1 версия) |
Admin (обсуждение | вклад) м (1 версия) |
(нет различий)
|
Текущая версия на 09:53, 26 мая 2010
DECODE(crypt_str,pass_str) decrypts the encrypted string crypt_str using pass_str.
crypt_str should be a string returned from ENCODE().
mysql>
mysql> select decode(encode("text","password"),"password");
+----------------------------------------------+
| decode(encode("text","password"),"password") |
+----------------------------------------------+
| text |
+----------------------------------------------+
1 row in set (0.00 sec)
mysql>