日期:2014-05-17 浏览次数:21383 次
--转换成日期型试试: insert into 表名(info_date) values (To_Date('2011-01-01 11:11:11','yyyy-mm-dd hh24:mi:ss'));
------解决方案--------------------
--每个数据库都有自己的一套标准,
--在各个数据库之间游走时要注意某些限制,如:数据类型,内置函数
insert into 表名(info_date) values (to_date('2011-01-01 11:11:11','yyyy-mm-dd hh24:mi:ss'));