Oracle CONVERT Function


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

A few examples of the CONVERT function.


Copy this code and paste it in your HTML
  1. --CONVERT
  2. SELECT CONVERT('Ä Ê Í Õ Ø A B C D E ', 'US7ASCII', 'WE8ISO8859P1') AS CONVERT_TEST
  3. FROM dual;
  4.  
  5. SELECT CONVERT('Ä Ê Í Õ Ø A B C D E ', 'UTF8', 'WE8ISO8859P1') AS CONVERT_TEST
  6. FROM dual;

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

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.