FROM_BASE64
Decode a base-64 encoded string. This function takes a base-64 string and returns the decoded binary result.
Syntax
FROM_BASE64(str)Description
SELECT TO_BASE64('Maria') AS 'Input';
+-----------+
| Input |
+-----------+
| TWFyaWE= |
+-----------+
SELECT FROM_BASE64('TWFyaWE=') AS 'Output';
+--------+
| Output |
+--------+
| Maria |
+--------+Last updated
Was this helpful?

