FROM_BASE64
from_base64β
descriptionβ
Syntaxβ
VARCHAR from_base64(VARCHAR str)
Returns the result of Base64 decoding the input string
exampleβ
mysql> select from_base64('MQ==');
+---------------------+
| from_base64('MQ==') |
+---------------------+
| 1 |
+---------------------+
mysql> select from_base64('MjM0');
+---------------------+
| from_base64('MjM0') |
+---------------------+
| 234 |
+---------------------+
keywordsβ
from_base64