Oracle RAWTOHEX Function


/ Published in: SQL
Save to your folder(s)

A few examples of the RAWTOHEX function.


Copy this code and paste it in your HTML
  1. --RAWTOHEX
  2.  
  3. --Example 1
  4. SELECT RAWTOHEX('ABC') AS hexval
  5. FROM dual;
  6.  
  7.  
  8. --Example 2
  9. SELECT RAWTOHEX('This is a long value') AS hexval
  10. FROM dual;

URL: http://www.databasestar.com/oracle-rawtohex/

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.