Hi
I wonder if it is possible Currency Symbol from $ to Rs
Below is my table structure where SAL is in char type but i wanted to change is to TO_NUMBER which should display Rs. Currency symbol
| Name Null Type | |
---- ---- ------------
| SAL | VARCHAR2(20) |
This much i am able to make
SELECT SAL,to_number(sal,'$99999.00') from yy

But now instead of $ , I wanted to display as Rs like Rs.5000 , Rs.4000
Will appreciate if anyone could suggest the query for displaying SAL as Rs.5000 , Rs.4000 using TO_NUMBER conversion function