Oracle DECOMPOSE Function


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

A few examples of the DECOMPOSE function.


Copy this code and paste it in your HTML
  1. --DECOMPOSE
  2.  
  3. --Example 1
  4. SELECT DECOMPOSE('é') AS D_TEST
  5. FROM dual;
  6.  
  7. --Example 2
  8.  
  9. SELECT DECOMPOSE('Je suis américain') AS D_TEST
  10. FROM dual;

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

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.