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