db2数据库存储过程入门6

来源:互联网 发布:安全联盟认证知乎 编辑:程序博客网 时间:2024/05/16 16:08

例8:

--在存储过程中用while循环进行递归查找sid分类下的所有子分类
drop procedure test14;
create procedure test14(in sid integer)
language sql
begin

 declare num        integer;--子分类的数量
 declare global temporary table session.c_dtdoctype--子分类的临时表
 (
  id integer,
  parentid integer,
  name varchar(300)
 );
 declare global temporary table session.p_dtdoctype--父分类的临时表
 (
  id integer,
  parentid integer,
  name varchar(300)
 );
 declare global temporary table session.r_dtdoctype--结果分类的临时表
 (
  id integer,
  parentid integer,
  name varchar(300)
 )with replace;
 --查询表dtdoctype中的数据,插入到临时表session.dtdoctype中
 insert into session.p_dtdoctype select id,parentid,name from dtdoctype where parentid = sid;
 insert into session.r_dtdoctype select id,parentid,name from dtdoctype where parentid = sid;
 select count(*) into num from session.p_dtdoctype;--查询父表中是否有数据
 
 while(num>0)
 do
  delete from session.c_dtdoctype;--删除子表中的数据
  --从父表中查出子分类集合存放到子表中
  insert into session.c_dtdoctype select id,parentid,name from dtdoctype where parentid in (select id from session.p_dtdoctype);
  insert into session.r_dtdoctype select id,parentid,name from dtdoctype where parentid in (select id from session.p_dtdoctype);
  --从父表中查出子分类集合存放到子表中
  delete from session.p_dtdoctype;--删除父表中的数据
  --将子表中的数据存放在父表中
  insert into session.p_dtdoctype select * from session.c_dtdoctype;
  --查询父表中是否有数据
  select count(*) into num from session.p_dtdoctype;
  
 end while;
 
 begin
  declare Ydtdoctype cursor with return for select * from session.r_dtdoctype;
  open Ydtdoctype;--打开游标
 end;
 
 drop table session.c_dtdoctype;
 drop table session.p_dtdoctype;
 --drop table session.r_dtdoctype;
end;

原创粉丝点击
热门问题 老师的惩罚 人脸识别 我在镇武司摸鱼那些年 重生之率土为王 我在大康的咸鱼生活 盘龙之生命进化 天生仙种 凡人之先天五行 春回大明朝 姑娘不必设防,我是瞎子 双流办健康证怎么办 户口本人数满了怎么办 二建有效期到了怎么办 二级建造师到期怎么办 网上选车牌号后怎么办 政府拖欠水利工程款怎么办 重庆造价员到期了怎么办 枕大神经发炎怎么办 塑钢推拉窗下沉怎么办 网上买东西数量不够怎么办 淘宝买东西数量不够怎么办 康佳遥控器坏了怎么办 电视机频幕脏了怎么办 极米遥控器失灵怎么办 电视遥控坏了怎么办 小米手机触摸屏失灵怎么办 oppo手机触摸屏失灵怎么办 苹果手机屏幕没反应怎么办 苹果6sp换屏卡顿怎么办 苹果4屏幕失灵怎么办 苹果手机老是卡怎么办 苹果手机卡机了怎么办 苹果手机卡屏了怎么办 苹果8手机老卡机怎么办 苹果手机不开机怎么办 手机开机后黑屏怎么办 苹果x手机黑屏怎么办 苹果7手机黑屏怎么办 苹果触控不灵敏怎么办 收银机触屏失灵怎么办 手机屏一半失灵怎么办 苹果六手机屏幕失灵怎么办 苹果5s卡怎么办 苹果5很卡怎么办 笔记本屏幕卡顿怎么办 手机外屏幕失灵怎么办 6p手机屏幕失灵怎么办 home键指纹失灵怎么办 小米触屏不灵敏怎么办 vivo手机音量小怎么办 iphone尾插松动怎么办