- Categories:
String & binary functions (Encoding/Decoding)
TRY_BASE64_DECODE_BINARY¶
A special version of BASE64_DECODE_BINARY that returns a NULL value if an error occurs during decoding.
Syntax¶
Arguments¶
inputThe base64-encoded string to convert to BINARY data type.
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¶
This returns a BINARY value. The value can be inserted into a column of
type BINARY, for example.
Usage notes¶
For more information about base64 format, see base64.
Examples¶
This shows how to use the function TRY_BASE64_DECODE_BINARY. The function
is used in the INSERT statement to decode a base64-encoded string
into a BINARY field; the function is not used in the SELECT
statement.
Create a table and insert data:
Now run a query to show that we can retrieve the data intact: