如何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='山东 - 济阳' 展开
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='山东 - 济阳' 展开
4个回答
2018-06-28 · 互联网+时代高效组织信息化平台
关注
展开全部
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结尾
上边就是举个例子,意思是,当id=1时,把value设定个值,当id=2时,value设定另一个值,依次类推,不需要更改的保留原来的value值,最后以end结尾
展开全部
用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 '山东 - %'
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 '山东 - %'
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
一楼正解,用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 '山东 - %'
但是要修正一下
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 '山东 - %'
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
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;
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;
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询