Oracle ASCIISTR Function


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

A few examples of the ASCIISTR function.


Copy this code and paste it in your HTML
  1. --ASCIISTR
  2.  
  3.  
  4. --Example 1
  5. SELECT ASCIISTR('Monday') AS output_value
  6. FROM dual;
  7.  
  8.  
  9. --Example 2
  10. SELECT ASCIISTR('Tuësd?y)') AS output_value
  11. FROM dual;
  12.  
  13.  
  14.  
  15. --Example 3
  16. SELECT ASCIISTR('WÈÐ????ày') AS output_value
  17. FROM dual;

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

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.