FROM_BASE64() FUNCTION in MySQL

FROM_BASE64() FUNCTION
The MySQL FROM_BASE64 function is used to encode a specified string to binary format.

Syntax:

FROM_BASE64( string )

Parameters:
string: It is used to specify the string to encode.

Example:

mysql> SELECT FROM_BASE64 ('mysql') as 'OUTPUT'; 

Output:

OUTPUT
NULL