- Categories:
String & binary functions (Encoding/Decoding)
BASE64_ENCODE¶
Encodes the input (string or binary) using Base64 encoding.
- See also:
Syntax¶
Arguments¶
Required:
inputA string or binary expression to be encoded.
Optional:
max_line_lengthA positive integer that specifies the maximum number of characters in a single line of the output.
Default:
0(specifies that no line breaks are inserted (i.e. the maximum line length is infinite))alphabetA string consisting of up to three ASCII characters:
The first two characters in the string specify the last two characters (indexes 62 and 63) in the alphabet used to encode the input:
AtoZ(indexes 0-25)atoz(indexes 26-51)0to9(indexes 52-61)+and/(indexes 62, 63)
Defaults:
+and/The third character in the string specifies the character used for padding.
Default:
=
Returns¶
Returns a string (regardless of whether the input was a string or BINARY).
Usage notes¶
The characters in the
alphabetstring are positionally parsed; to specify different characters in the second or third positions in the string, you must explicitly specify all preceding characters even if you wish to use the defaults.For example:
+$specifies the default (+) for index 62 and a different character ($) for index 63; no character is explicitly specified for padding so the default character (=) is used.+/%specifies the defaults (+and/) for indexes 62 and 63, and specifies a different character (%) for padding.
If you specify an
alphabetstring to encodeinput, the same string must be used to decodeinput.
For more information about base64 format, see base64.
Returns¶
This returns a string that contains only the characters used for the base64 encoding.
Examples¶
Encode a string using Base64:
Encode a string containing non-ASCII characters using Base64 with ‘$’ in place of ‘+’ for encoding, and output the string with a maximum line length of 32:
This shows another example of using BASE64_ENCODE (and also
BASE64_DECODE_STRING):
Create a table and data:
Now run a query using
BASE64_DECODE_STRING: