BASE64_DECODE v16
Use the BASE64_DECODE
function to translate a Base64 encoded string to the original value originally encoded by BASE64_ENCODE
. The signature is:
This function returns a RAW
value.
Parameters
r
r
is the string that contains the Base64 encoded data to translate to RAW
form.
Examples
Before executing the following example, invoke the command:
This command instructs the server to escape any non-printable characters and to display BYTEA
or RAW
values onscreen in readable form. For more information, see the Postgres core documentation.
https://www.postgresql.org/docs/current/static/datatype-binary.html
This example encodes and then decodes a string that contains the SQL abc. It uses BASE64_ENCODE
for encoding and BASE64_DECODE
for decoding.
- On this page
- Parameters
- Examples