insert into mi_config_info_if values(to_timestamp(nvl('原来的时间','1900-01-01 00:00:00'),'yyyy-mm-dd hh24:mi:ss');
像这样设定一个原来的时间为null的时候的默认值就行。
to_timestamp()函数的第一个参数不能为NULL,如果你想插入null值,那直接写
insert into mi_config_info_if values(null);
时间的类型不是有个to_date()和to_char()的嘛!
应该用timestamp类型吧