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. Syntaxselect from_base64(str) ; Example 1Select from_base64('java') as 'Input'; Output: Example 2Select from_base64('mysql') as 'output'; Output:
Next TopicMySQL String
|