下列我们与查某数据库中的news 表和 ID字段然后更新TIM时间字段为例
查询
select * from News(表名) where id(字段) = 100(字段ID)
更新
--update News set time(时间字段)='2010-10-1 10:01:11.000' where id(字段) = 100 (字段ID)
原执行语句
select * from News where id = 100
--update News set time='2010-10-1 10:01:11.000' where id= 100