你游標(biāo)木有定義把,一般都是這樣寫的.還有你的列名是a1,前面加了個(gè)限定t是把?如果加限定的話,那在from后面的數(shù)據(jù)來源表,就需要標(biāo)明那個(gè)表是t.
創(chuàng)新互聯(lián)專業(yè)為企業(yè)提供清原網(wǎng)站建設(shè)、清原做網(wǎng)站、清原網(wǎng)站設(shè)計(jì)、清原網(wǎng)站制作等企業(yè)網(wǎng)站建設(shè)、網(wǎng)頁設(shè)計(jì)與制作、清原企業(yè)網(wǎng)站模板建站服務(wù),10多年清原做網(wǎng)站經(jīng)驗(yàn),不只是建網(wǎng)站,更提供有價(jià)值的思路和整體網(wǎng)絡(luò)服務(wù)。
vstr1 varchar2(100)
vstr2 varchar2(100)
declare r_cur cursor for select t.a1,t.a2 from abc t
open r_cur
fetch from r_cur into vstr1,vstr2
后面就是
while @@FETCH_STATUS = 0 .....等等不寫了。
反正游標(biāo)頭我都是那么寫,沒有問題。
--打開游標(biāo)并提取后面SQL的第一行數(shù)據(jù)放到游標(biāo)中 這里就是打開游標(biāo)
open for 是隱式游標(biāo)的寫法 不建議使用 這種游標(biāo)好象不需要關(guān)閉 具體你自己測試下 而且少了expection 處理
fetch mycur into yang_02;
--循環(huán)插入數(shù)據(jù)
多余了 可以不要 前面有fetch了如果還有這里的話 就只能插入奇數(shù)行
其他沒什么問題了 還有你這個(gè)過程用ref cursor是浪費(fèi) 沒必要用 用簡單的顯示游標(biāo)更好點(diǎn)
--?第一個(gè)題目,我的表叫stu,你別忘了改成你的表名
create?or?replace?procedure?pro7
as
cursor?c_emp1?is?select?ename,sal?from?stu;
vename?stu.ename%type;
vsal?stu.sal%type;
vnewsal?stu.sal%type;
vfd?number?:=?0;
begin
open?c_emp1;
loop
fetch?c_emp1?into?vename,vsal;
exit?when?c_emp1%notfound;
vfd?:=?vsal*0.2;
if?vfd?=?300
then?update?stu?set?sal?=?sal+vfd?where?ename=vename;
vnewsal?:=?vsal+vfd;
dbms_output.put_line('員工'?||?vename?||?'漲了'?||?vnewsal?||?'工資');
end?if;
end?loop;
close?c_emp1;
end;
Oracle游標(biāo),從字面理解就是游動(dòng)的光標(biāo)。用數(shù)據(jù)庫語言來描述就是:游標(biāo)是映射在結(jié)果集中一行數(shù)據(jù)上的位置實(shí)體,有了游標(biāo),用戶就可以訪問結(jié)果集中的任意一行數(shù)據(jù)了,將游標(biāo)放置到某行后,即可對該行數(shù)據(jù)進(jìn)行操作,例如提取當(dāng)前行的數(shù)據(jù)等。
游標(biāo)分為顯示游標(biāo)和隱式游標(biāo)。
要使用顯示游標(biāo)分為四步:
1.聲名游標(biāo)。
cursor sel_names is select * from names;
2.打開游標(biāo)。
open sel_names;
3.讀取數(shù)據(jù)。
fetch sel_name into RowTypeVariable;
4.關(guān)閉游標(biāo)。
close sel_name;
Oracle游標(biāo)的屬性:
1.%ISOPEN判斷游標(biāo)是否被打開,如果打開%ISOPEN等于true,否則等于false;
2.%FOUND判斷游標(biāo)所在的行是否有效,如果有效,則%FOUND等于true,否則等于false;
3.%ROWCOUNT返回當(dāng)前位置為止游標(biāo)讀取的記錄行數(shù)。
例子:
set serveroutput on;
declare
temp_name varchar2(32);
cursor sel_name
is
select * from names;
begin
if sel_names%isopen = false then
open sel_names;
end if;
fetch sel_names into temp_name;
while sel_names%found loop
dbms_output.put_line('name: '||temp_name);
if sel_names%rowcount=200 then
exit;
end if;
fetch sel_names into temp_name;
end loop;
close sel_names;
end;
/
游標(biāo)能夠根據(jù)查詢條件從數(shù)據(jù)表中提取一組記錄,將其作為一個(gè)臨時(shí)表置于數(shù)據(jù)緩沖區(qū)中,利用指針逐行對記錄數(shù)據(jù)進(jìn)行操作。
Oracle中的游標(biāo)分為顯示游標(biāo)和隱式游標(biāo) 。
在執(zhí)行SQL語句時(shí),Oracle會(huì)自動(dòng)創(chuàng)建隱式游標(biāo),該游標(biāo)是內(nèi)存中處理該語句的數(shù)據(jù)緩沖區(qū),存儲(chǔ)了執(zhí)行SQL語句的結(jié)果。通過隱式游標(biāo)屬性可獲知SQL語句的執(zhí)行狀態(tài)信息。
%found:布爾型屬性,如果sql語句至少影響到一行數(shù)據(jù),值為true,否則為false。
%notfound:布爾型屬性,與%found相反。
%rowcount:數(shù)字型屬性,返回受sql影響的行數(shù)。
%isopen:布爾型屬性,當(dāng)游標(biāo)已經(jīng)打開時(shí)返回true,游標(biāo)關(guān)閉時(shí)則為false。
用戶可以顯式定義游標(biāo)。使用顯式游標(biāo)處理數(shù)據(jù)要4個(gè)步驟:定義游標(biāo)、打開游標(biāo)、提取游標(biāo)數(shù)據(jù)和關(guān)閉游標(biāo)。
游標(biāo)由游標(biāo)名稱和游標(biāo)對應(yīng)的select結(jié)果集組成。定義游標(biāo)應(yīng)該放在pl/sql程序塊的聲明部分。
語法格式:cursor 游標(biāo)名稱(參數(shù)) is 查詢語句
打開游標(biāo)時(shí),游標(biāo)會(huì)將符合條件的記錄送入數(shù)據(jù)緩沖區(qū),并將指針指向第一條記錄。
語法格式:open 游標(biāo)名稱(參數(shù));
將游標(biāo)中的當(dāng)前行數(shù)據(jù)賦給指定的變量或記錄變量。
語法格式:fetch 游標(biāo)名稱 into 變量名;
游標(biāo)一旦使用完畢,就應(yīng)將其關(guān)閉,釋放與游標(biāo)相關(guān)聯(lián)的資源。
語法格式:close 游標(biāo)名稱;
declare
cursor c1 is? select sno,cno,grade from sc;
v_sno sc.sno%type;
v_cno sc.cno%type;
v_grade sc.grade%type;
begin
open c1;
loop
? fetch c1 into v_sno,v_cno,v_grade;
? exit when c1%notfound;--緊跟fetch之后
if c1%found then
dbms_output.put_line(to_char(c1%rowcount)||v_cno);
end if;
end loop;
close c1;?
end;
declare
cursor c1 is select sno,cno,grade from sc;
v_sno sc.sno%type;
v_cno sc.cno%type;
v_grade sc.grade%type;
begin
open c1;
fetch c1 into v_sno,v_cno,v_grade;
while c1%found loop
? dbms_output.put_line(v_sno||v_cno||v_grade);
?fetch c1 into v_sno,v_cno,v_grade;
end loop;
close c1;?
end;
第三種:for
declare
cursor c1 is select sno,cno,grade from sc;
begin
for item in c1 loop
dbms_output.put_line(rpad(item.sno,'10',' ')||rpad(item.cno,'10',' ')||rpad(item.grade,'10',' '));
end loop;
end;
一、不帶參數(shù)的游標(biāo)for循環(huán)
1
首先編寫存儲(chǔ)過程的整體結(jié)構(gòu),如下:
create or replace procedure test_proc is
v_date date; --變量定義
begin
select sysdate into v_date from dual;
end test_proc;
2
定義游標(biāo):
create or replace procedure test_proc is
v_date date; --定義變量
cursor cur is select * from ldcode; --定義游標(biāo)
begin
select sysdate into v_date from dual;
end test_proc;
3
編寫for循環(huán):
create or replace procedure test_proc is
v_date date; --定義變量
cursor cur is select * from ldcode where rownum10; --定義游標(biāo)
begin
select sysdate into v_date from dual;
--游標(biāo)for循環(huán)開始
for temp in cur loop --temp為臨時(shí)變量名,自己任意起
Dbms_Output.put_line(temp.Code); --輸出某個(gè)字段,使用"變量名.列名"即可。
end loop;
--游標(biāo)for循環(huán)結(jié)束
end test_proc;
4
測試運(yùn)行,點(diǎn)擊【DBMS Output】標(biāo)簽頁查看結(jié)果如下圖:
END
二、帶參數(shù)的游標(biāo)for循環(huán)
1
定義帶參數(shù)的游標(biāo):
cursor cur(v_codetype ldcode.Codetype%TYPE) is
select * from ldcode where codetype = v_codetype; --定義游標(biāo)
定義游標(biāo)格式:
cursor 游標(biāo)名稱(變量定義) is 查詢語句;
注意:
where條件中的變量名v_codetype要與游標(biāo)定義cur(v_codetype ldcode.Codetype%TYPE)中的一致。
2
編寫for循環(huán)部分:
--游標(biāo)for循環(huán)開始
for temp in cur('llmedfeetype') loop
--temp為臨時(shí)變量名,自己任意起
--cur('llmedfeetype')為"游標(biāo)名稱(傳入的變量)"
Dbms_Output.put_line(temp.Code); --輸出某個(gè)字段,使用"變量名.列名"即可。
end loop;
--游標(biāo)for循環(huán)結(jié)束
3
測試運(yùn)行,點(diǎn)擊【DBMS Output
網(wǎng)頁題目:oracle游標(biāo)怎么存儲(chǔ) oracle 存儲(chǔ)過程調(diào)用有游標(biāo)的存儲(chǔ)過程
文章位置:http://jinyejixie.com/article42/hehshc.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供做網(wǎng)站、網(wǎng)站建設(shè)、外貿(mào)網(wǎng)站建設(shè)、網(wǎng)頁設(shè)計(jì)公司、移動(dòng)網(wǎng)站建設(shè)、域名注冊
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來源: 創(chuàng)新互聯(lián)