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') f ...
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