日期:2014-05-16  浏览次数:20683 次

'2012年10月09日13:47'类型的日期怎么插入oracle数据库中
'2012年10月09日13:47'类型的日期怎么插入oracle数据库中???

------解决方案--------------------
先把中文去掉再调用to_date()转成date型
SQL code
select to_date(regexp_replace('2012年10月09日13:47','[^0-9:]',''),'yyyymmddhh24:mi') from dual