数字转英文

来源:互联网 发布:易烊千玺直播软件 编辑:程序博客网 时间:2024/06/09 14:24

运行select to_char(to_date('911','J'),'Jsp') as a from dual
显示结果为:Nine Hundred Eleven
而运行select to_date('911','J') as a from dual
显示结果为:0000-0-0

J:Julian day; the number of days since January 1, 4712 BC. Number specified with 'J' must be integers.
SP:Spelled Number
他的做法是先把数字转为一个数字,然后再转换回来,加上SP,就可以拼写出这个数字了。

大家注意这样用有个限制:
j就是范围在1--5373484之间