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

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

'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