Syntax
PASSWORD(str)
Purpose
Encrypts a string. It receives a plaintext string as input and returns the encrypted version of the string.
Examples
obclient [test]> SELECT PASSWORD('***1***');
The result set is as follows:
+--------------------------------------------+
| PASSWORD('***1***') |
+--------------------------------------------+
| *BA10AFC5C8D9F9D1A5704E9C274C1A63EE9CB94B |
+--------------------------------------------+
1 row in set, 1 warning
