ENCODE-mysql

by Mohan 2012-09-21 09:41:49

ENCODE(str,pass_str) (Encrypt str using pass_str as the password.)

To decrypt the result, use DECODE().
mysql>
mysql> select decode(encode("text","password"),"password");
+----------------------------------------------+
| decode(encode("text","password"),"password") |
+----------------------------------------------+
| text |
+----------------------------------------------+
1 row in set (0.00 sec)

mysql>
mysql>
950
like
0
dislike
0
mail
flag

You must LOGIN to add comments