Oracle NCHR Function


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

A few examples of the NCHR function.


Copy this code and paste it in your HTML
  1. --NCHR
  2.  
  3. --Example 1
  4. SELECT NCHR(120)
  5. FROM dual;
  6.  
  7. --Example 2
  8. SELECT CHR(161),
  9. CHR(161 USING NCHAR_CS),
  10. NCHR(161)
  11. FROM dual;

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

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.