Oracle中遊標的使用案例

來源:互聯網
上載者:User

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,'搜尋','網站預設','','','','搜尋結果列表',
  '<iframe id=searchDiv_dongtai width=100% height=2000px frameborder=no border=0 marginwidth=0 marginheight=0></iframe><script src="/webSite/webLink/fixed/search.js" type="text/javascript"></script>',
  '','','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;

相關文章

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.