BASE64ENCODE
| Function | |
|---|---|
| Action | Produces a Base 64 encoded string for the input text. | 
| Parameters | (string) Input text to be encoded. | 
| Return values | (string) Base 64 encoded string. | 
| Example | // Returns "QUJDYWJjMTIzIUAjPXw+ejw/"
SELECT BASE64ENCODE("ABCabc123!@#=|>z<?") AS Base64Encoded; | 
| Notes | Introduced in v23.5 |