資源描述:
《oracle存儲過程例子.doc》由會員上傳分享,免費(fèi)在線閱讀,更多相關(guān)內(nèi)容在教育資源-天天文庫。
1、oracle存儲過程學(xué)習(xí)過程一直沒有使用過存儲過程今天特意學(xué)習(xí)一下oracle的存儲過程一步一步學(xué)習(xí),今天學(xué)習(xí)如下:建立一個最簡單的存儲過程createorreplaceproceduretest_xg_p1isbegindbms_output.put_line('helloworld!thisisthefirstprocedure');end;建立一個帶輸入輸出參數(shù)的存儲過程:把輸入的數(shù)據(jù)傳給輸出參數(shù)createorreplaceproceduretest_xg_p2(ainnumber,xoutnumber)isbe
2、ginx:=a;endtest_xg_p2;建立一個邏輯判斷的存儲過程,并包含輸入輸出參數(shù):近似分?jǐn)?shù)的登記判斷createorreplaceproceduretest_xg_p3(ainnumber,xoutvarchar2)isbeginifa>=90thenbeginx:='A';end;endif;ifa<90thenbeginx:='B';end;endif;ifa<80thenbeginx:='C';end;endif;ifa<70thenbeginx:='D';end;endif;ifa<60thenbegi
3、nx:='E';end;endif;endtest_xg_p3;建立一個帶循環(huán)邏輯的存儲過程:近似累加函數(shù)createorreplaceproceduretest_xg_p4(ainnumber,xoutvarchar2)istempresultnumber(16);begintempresult:=0;fortempain0..aloopbegintempresult:=tempresult+tempa;end;endloop;x:=tempresult;endtest_xg_p4;建立一個能從數(shù)據(jù)庫中特定表中返回數(shù)據(jù)
4、的存儲過程:createorreplaceproceduretest_xg_p5(xoutvarchar2)istempresultvarchar2(1024);begintempresult:='start->';selecthotelid
5、
6、hotelnameintotempresultfromhotelwherehotelid=;x:=tempresult;endtest_xg_p5;建立一個能使用游標(biāo)的帶循環(huán)的存儲過程:createorreplaceproceduretest_xg_p6(xoutvarchar2
7、)istempresultvarchar2(10240);cursorcursor1isselect*fromhotelwherehotelnamelike'浙江%';begintempresult:='start->';forcursor_resultincursor1loopbegintempresult:=tempresult
8、
9、cursor_result.hotelid
10、
11、cursor_result.hotelname;end;endloop;x:=tempresult;endtest_xg_p6;