RAWTOHEX
RAWTOHEX(x)
converts the binary number (RAW
) x to a VARCHAR2
string in equivalent hexadecimal number.
SQL> select rawtohex('A') from dual;
RA
--
41
SQL>
RAWTOHEX(x)
converts the binary number (RAW
) x to a VARCHAR2
string in equivalent hexadecimal number.
SQL> select rawtohex('A') from dual;
RA
--
41
SQL>