|
|
Re: Converting currency from $ to £ [message #120218 is a reply to message #120210] |
Wed, 18 May 2005 09:08   |
Fooman
Messages: 17 Registered: April 2005 Location: Germany
|
Junior Member |
|
|
just re-read my original message, and maybe i wasnt too clear
i want to change the 'value' in a column not the format of the column itself
my current idea is, using the dual table:
select TO_CHAR (2000, '9G999D99C', 'nls_numeric_characters = ''.,''
nls_iso_currency = united kingdom')
from dual;
it returns this:
nls_iso_currency = united kingdom') from dual
*
ERROR at line 2:
ORA-12702: invalid NLS parameter string used in SQL function
but it i change the 'united kingdom' from line 2 to 'japan'
it works and return the following:
TO_CHAR(2000,'9G
----------------
2,000.00JPY
|
|
|
|
|
|