如何用SQL语句更新一张表里的多条数据?

如何用SQL语句更新一张表里的多条数据?,第1张

update TableA set NameSpell=dbofn_GetPinyin(name)
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]=" & itemno

update 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)


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/yw/10542295.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-09
下一篇 2023-05-09

发表评论

登录后才能评论

评论列表(0条)

保存