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