Syntax
FROM_BASE64(str)
Purpose
FROM_BASE64() decodes a Base64-encoded string and returns it as a binary string. It is usually used to decode a string encoded by the TO_BASE64() function.
Examples
obclient [test]> SELECT FROM_BASE64('T0I=');
+---------------------+
| FROM_BASE64('T0I=') |
+---------------------+
| OB |
+---------------------+
1 row in set