BASE64_DECODE

Description

Returns the original string by decoding the provided Base64-encoded input. If the input is not valid Base64, the function returns an error.

Syntax

BASE64_DECODE(encoding) -> String

Parameters

ParameterData TypeRequiredDescription
encodingStringYesThe Base64-encoded string to decode.

Example

BASE64_DECODE("RGF0YSBTeW5jIFBybw==")
-- Returns "Data Sync Pro".