/ Published in: SQL
A few examples of the RAWTOHEX function.
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
--RAWTOHEX --Example 1 SELECT RAWTOHEX('ABC') AS hexval FROM dual; --Example 2 SELECT RAWTOHEX('This is a long value') AS hexval FROM dual;
URL: http://www.databasestar.com/oracle-rawtohex/