C-Sharp | Java | Python | Swift | GO | WPF | Ruby | Scala | F# | JavaScript | SQL | PHP | Angular | HTML
| MySQL FROM_BASE64() FunctionFrom_base64(str) is a Sring function of MySQL. This method encode the given string to binary formate. Syntax
 select from_base64(str) ; Example 1
 
Select from_base64('java') as 'Input';
Output:   Example 2
 
Select from_base64('mysql') as 'output';
Output:   
Next TopicMySQL String
 |