如下题 请经常写存储过程 懂数据库Oracle 或者你知道如何写都帮帮我
题目
如下题 请经常写存储过程 懂数据库Oracle 或者你知道如何写都帮帮我
更新khexpinfo表的历史数据customer_id 的值,根据khexpInfo表的id与centerMaterialuseDetail表export_Uid关联,--centerMaterialuseDetail表的batchinfoUId与Batchinfo表的fuid关联,得到customer_id--用distinct关键字,如果结果记录数大于1则不需要处理,--否则就将khexinfo表的customer_id更新为所查出的customer_Id值
-- 先根据khexpinfo的id查询,若记录数大于1则不执行第2条更新语句,否则执行第2条语句更新语句select distinct b.customer_id from centermaterialusedetail c ,batchinfo b where c.export_uid='154461' and c.batchinfo_uid=b.fuid;
update khexpinfo set customer_id=(select distinct b.customer_id from centermaterialusedetail c ,batchinfo b where c.export_uid='154461' and c.batchinfo_uid=b.fuid) where id=154461;
我这样只能一条一条更新,谁会写歌存储过程 ,循环帮我更新,一条一条更新真的不现实啊
答案
create procedure test is
cursor custom_list is
select id from khexpinfo;
custom_dic custom_list%ROWTYPE;
my_custom_id in number(20);
begin
for custom_dic in custom_list loop
begin
select distinct b.customer_id into my_custom_id from centermaterialusedetail c ,batchinfo b where c.export_uid=custom_dic.id and c.batchinfo_uid=b.fuid;
update khexpinfo set customer_id=my_custom_id where id=custom_dic.id;
exception when others then
my_custom_id:=0;
end;
end loop;
commit;
end;
举一反三
已知函数f(x)=x,g(x)=alnx,a∈R.若曲线y=f(x)与曲线y=g(x)相交,且在交点处有相同的切线,求a的值和该切线方程.
我想写一篇关于奥巴马的演讲的文章,写哪一篇好呢?为什么好
最新试题
热门考点
- 一、1吨煤用去30%,还剩下70%吨(判断题,算式也要)
- 博学而笃志,切问而近思,仁在其中矣出自论语哪个篇章
- 关于等差数列前n项和的题目
- 几道简单的公务员行测题
- 仿写句子 美是什么.要3个
- 《羔美》这两个字上下合到一块念什么字?
- 求点P(3,3)关于直线2x-3y+1=0的对称点P的坐标
- (1)9分之14-50%÷3分之2-5分之1 (2)8分之7×80%-8分之1×80%-0.25×80%
- 唐代,把谁和谁称为小李杜
- 小方用10元买了3个橡皮,7个练习本,剩下的钱再买个橡皮还差0.14元,买个练习本呢还剩0.8元,