如何update sql 批量更新?

如下代码,怎样写成一句,或中间用什么字符隔开才能同时运行?updateYao_ArticlesetAuthor='/1/35/'whereAuthor='山东-历下'up... 如下代码,怎样写成一句,或中间用什么字符隔开才能同时运行?
update Yao_Article set Author='/1/35/' where Author='山东 - 历下'
update Yao_Article set Author='/1/36/' where Author='山东 - 市中'
update Yao_Article set Author='/1/37/' where Author='山东 - 槐荫'
update Yao_Article set Author='/1/38/' where Author='山东 - 天桥'
update Yao_Article set Author='/1/39/' where Author='山东 - 历城'
update Yao_Article set Author='/1/40/' where Author='山东 - 长清'
update Yao_Article set Author='/1/41/' where Author='山东 - 平阴'
update Yao_Article set Author='/1/42/' where Author='山东 - 济阳'
展开
 我来答
深圳市励拓软件有限公司
2018-06-28 · 互联网+时代高效组织信息化平台
深圳市励拓软件有限公司
汇讯WiseUC企业即时通讯软件是一款以组织内沟通交流为基础,即时通讯为核心,融合办公协同、IT系统集成,帮助企业降低运营成本、提升组织效率的企业级沟通协同平台。
向TA提问
展开全部
update 表名 set value=case when id=1 then 一个值 when id=2 then 一个值 when id=3 then 一个值 else value end
上边就是举个例子,意思是,当id=1时,把value设定个值,当id=2时,value设定另一个值,依次类推,不需要更改的保留原来的value值,最后以end结尾
Kan0818
2010-01-11 · TA获得超过112个赞
知道小有建树答主
回答量:184
采纳率:0%
帮助的人:220万
展开全部
用case语句试试:

update Yao_Article set Author=(case Author when '山东 - 历下' then '/1/35/' when '山东 - 市中' then '/1/36/' ...... when '山东 - 济阳' then '/1/42/' else Author end) where Author like '山东 - %'
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
wangyanjj
2010-01-11 · TA获得超过143个赞
知道小有建树答主
回答量:342
采纳率:0%
帮助的人:238万
展开全部
一楼正解,用case

但是要修正一下

update Yao_Article set Author=(case when Author='山东 - 历下' then '/1/35/' when '山东 - 市中' then '/1/36/' ...... when '山东 - 济阳' then '/1/42/' else Author end) where Author like '山东 - %'
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
大安于斯2262
推荐于2017-08-15 · TA获得超过1210个赞
知道小有建树答主
回答量:1605
采纳率:55%
帮助的人:254万
展开全部
declare
v_num number(3);
cursor cur_num is
select id from table_name where id between 100 and 320;

begin
open cur_num;
loop
fetch cur_num
into v_num;
exit when cur_num%notfound;
Update BD
set IsActive = '0', comments = 'old BD 2001'
where Id = v_num;
commit;
end loop;
close cur_num;
end;
本回答被网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(2)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式