
- Forum
- Database
- Oracle Database
- send me answer for some function questions
send me answer for some function questions
This is a discussion on send me answer for some function questions within the Oracle Database forums, part of the Database category; 1.Function for displaying Rupees in Words. 2.Function for displaying Numbers in Words...
-
02-12-2008, 04:19 PM #1
- Join Date
- Feb 2008
- Answers
- 2
send me answer for some function questions
1.Function for displaying Rupees in Words.
2.Function for displaying Numbers in Words
-
Hi gurusuryas
Try this
SQL> SELECT emp_id, emp_name, basic_salary, net_salary, (to_char(to_date(net_salary,'j'), 'jsp'))
FROM employee;
play around and make some small changes you can add "Rs." at the beginning and "only" at the end
Hope this helps
Regards
-
05-14-2008, 02:32 PM #3
- Join Date
- Feb 2008
- Answers
- 2
Thanks Guptha
Thanks Guptha for ur co opertaion
-
Sponsored Ads

Reply With Quote





