FROM_BASE64 (Lakehouse v2)
Decodes a base64-encoded string. Alias for BASE64_DECODE_STRING.
Analyze Syntax
Section titled “Analyze Syntax”func.from_base64(<str>)Analyze Examples
Section titled “Analyze Examples”func.from_base64('SGVsbG8=')
┌─────────┐│ 'Hello' │└─────────┘SQL Syntax
Section titled “SQL Syntax”FROM_BASE64(<str>)SQL Examples
Section titled “SQL Examples”SELECT FROM_BASE64('SGVsbG8=');
┌───────┐│ Hello │└───────┘