/ Published in: SQL
A few examples of the CONVERT function.
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
--CONVERT SELECT CONVERT('Ä Ê à Õ Ø A B C D E ', 'US7ASCII', 'WE8ISO8859P1') AS CONVERT_TEST FROM dual; SELECT CONVERT('Ä Ê à Õ Ø A B C D E ', 'UTF8', 'WE8ISO8859P1') AS CONVERT_TEST FROM dual;
URL: http://www.databasestar.com/oracle-convert/