How to translate Numbers to Spanish
Hi -
Can please anyone help me?
How can I convert/translate word numbers to Spanish? Example, instead of "twenty" it will be "veinte" or "Seven Thousand four hundred and fifty five" to "Siete mil cuatrocientos cincuenta y cinco"?
Currently this is what i have so far,
SELECT TO_CHAR (TO_DATE (10, 'YYYY'), 'Yyyysp')
FROM DUAL;
But this will only convert 10 to Ten. I need to convert the word "TEN" to "Diez".
Please!
Your help will be very much appreciated.