TO_BASE64
Encodes a string to a base64-encoded string.
Analyze Syntax
func.to_base64(<str>)
Analyze Examples
func.to_base64('Hello')
┌────────────┐
│ 'SGVsbG8=' │
└────────────┘
SQL Syntax
TO_BASE64(<str>)
SQL Examples
SELECT TO_BASE64('Hello');
┌──────────┐
│ SGVsbG8= │
└──────────┘