8
0
mirror of https://github.com/FirebirdSQL/firebird.git synced 2025-01-22 20:03:02 +01:00

Added doc for HEX functions

This commit is contained in:
AlexPeshkoff 2019-04-17 13:15:30 +03:00
parent d43f7c458f
commit 97f33ec4eb

View File

@ -575,6 +575,21 @@ Example:
select hash(x using sha256) from y;
-----------------------------
HEX_ENCODE / HEX_DECODE
-----------------------------
Function:
Encodes / decodes input data to / from hexadecimal representation. Works with character strings and blobs.
Format:
HEX_ENCODE( <binary data> )
HEX_DECODE( <hex data> )
Example:
select hex_encode(public_key) from clients;
--------
LAST_DAY
--------