当前位置: 代码迷 >> ASP.NET >> update voter set time=#2007/04/28# 14:04:44# where id=1 错在哪了 请大哥指点,该如何解决
  详细解决方案

update voter set time=#2007/04/28# 14:04:44# where id=1 错在哪了 请大哥指点,该如何解决

热度:2200   发布时间:2013-02-25 00:00:00.0
update voter set time=#2007/04/28# 14:04:44# where id=1 错在哪了 请大哥指点
update voter set time=#2007/04/28 14:04:44# where id=1 错在哪了 请大哥指点

我就是想更新时间 为什么不能更新那?

------解决方案--------------------------------------------------------
time是关键字:

ACCESS数据库:
update voter set [time]=#2007/04/28 14:04:44# where [id]=1
SQL数据库:
update voter set [time]='2007/04/28 14:04:44' where [id]=1
  相关解决方案