BASE64_DECODE_STRING

Decodes a base64-encoded string to a VARCHAR string.

Analyze Syntax

func.base64_decode_string(<str>)

Analyze Examples

func.base64_decode_string('SGVsbG8=')

┌─────────┐
 'Hello'  
└─────────┘

SQL Syntax

BASE64_DECODE_STRING(<str>)

SQL Examples

SELECT BASE64_DECODE_STRING('SGVsbG8=');

┌───────┐
 Hello  
└───────┘