UPDATE 表名称 SET 列名称 = 新值 WHERE 列名称 = 某值
不知道是不是这个意思逗号是指同一个语句中,更新不同字段,如
sql1 = "Update SBase set [Category]='" & Category & "', [Summary]='" & Summary & "' where [ItemNo]='" & itemno & "'"
分号是指一次执行多条更新语句,如
sql1 = "Update SBase set [Category]='" & Category & "' where [ItemNo]='" & itemno & "';Update SBase set [Summary]='" & Summary & "' where [ItemNo]='" & itemno & "'"
在access中如果itemNo是整型,条件中不用单引号,如
where [ItemNo]=" & itemnoupdate a set atype=btype from b where aid=bid
为什么要一次更新1000条那,如果你硬是想要那样更新那就在加上个条件如下
update a set atype=btype from b where aid=bid
and aid in(select top 1000 aid from a,b where aid=bid and atype!=btype)
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)