1.to_number()
select to_number('2015') from dual ---2015
2.to_char()
--不需要转换格式
select to_char(2015) from dual ---'2015'
--需要转换格式
select to_char(1, '$000') from dual --- $001
select to_char(2212, '$999999') from dual ---$2212
3.to_date()
---必须提供匹配的时间格式
---例子
select to_date('2015/04/04 08:00:00','yyyy-MM-dd HH24:MI:SS') from dual
来源:oschina
链接:https://my.oschina.net/u/4346770/blog/3500718