Skip to content

Decodes a base64-encoded string to a VARCHAR string.

func.base64_decode_string(<str>)
func.base64_decode_string('SGVsbG8=')
┌─────────┐
'Hello'
└─────────┘
BASE64_DECODE_STRING(<str>)
SELECT BASE64_DECODE_STRING('SGVsbG8=');
┌───────┐
│ Hello │
└───────┘