to_date错误:
insert into t_commcont (u_meterid,socket_id,ctrl_id,data_id,
from_addr,to_addr,event_time,max_answer,comm_cont,issend)
values(123456789010, '121 ' , '01 ', '9010 ', '03 ', '01 ',
to_date(sysdate, 'yyyy-mm-dd hh24:mi:ss '),
sysdate, '6810907856341268010210902716 ',1)
主要是这个地方:
to_date(sysdate, 'yyyy-mm-dd hh24:mi:ss ')
有错,
请问应如何改,谢谢。
------解决方法--------------------------------------------------------
to_date(string, string)
sysdate是什么类型的?
------解决方法--------------------------------------------------------
是的,如果你的字段也是date型,你直接插个sysdate就行了,不用格式化。