您好,欢迎来到刀刀网。
搜索
您的当前位置:首页Oracle中游标的使用案例

Oracle中游标的使用案例

来源:刀刀网


DECLARE userid WEB_SITE.USERID%TYPE;id WEB_SITE.ID%TYPE;CURSOR site IS select id,userid from web_site;beginOPEN site;

DECLARE
userid WEB_SITE.USERID%TYPE;
id WEB_SITE.ID%TYPE;
CURSOR site IS select id,userid from web_site;
begin
OPEN site;
LOOP
fetch site into id,userid;
EXIT WHEN site%NOTFOUND;

INSERT INTO web_model (id,userId,siteId,name,type,codeHeadLeft,
codeHeadRight,code,codeEdit,codeWeb,model,bgColor,style)
values(id+1,userid,id,'搜索','网站默认','','','','搜索结果列表',
'',
'','','0');

INSERT INTO web_page (id,userId,siteId,model,fatherNode,fatherNodeName,name,title,
keyWords,introduction,bgColor,posterCode,code,style,isShow,isShowImgHead,isShowNavigation,
isShowFooter,pageType) values (id+2,userid,id,'2','0','','搜索结果','搜索结果','搜索结果',
'','','-1,-1,-1','widget-place-1=|widget-place-2=widget-'||(id+1),'0','0','1','1','1','1');

END LOOP;
close site;
end;

Copyright © 2019- gamedaodao.com 版权所有 湘ICP备2022005869号-6

违法及侵权请联系:TEL:199 18 7713 E-MAIL:2724546146@qq.com

本站由北京市万商天勤律师事务所王兴未律师提供法律服务