国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 開發(fā) > 綜合 > 正文

關(guān)于游標(biāo)的一點發(fā)現(xiàn)

2024-07-21 02:40:15
字體:
供稿:網(wǎng)友

昨天在寫存儲過程的時候發(fā)現(xiàn)了一個以前忽視了的地方,不知道對大家有沒有用。
創(chuàng)建顯性游標(biāo):
create or replace PRocedure test 
is 
cursor test1 is select name from devp;
test2 devp.name%type;
begin
open test1;
loop
fetch test1 into test2;
dbms_output.put_line(test2); --注重,此處用的是test2變量
exit when test1%notfound;
end loop; 
close test1;
end;
/

create or replace procedure test 
is 
cursor test1 is select name from devp;
test2 test1%rowtype;
begin
open test1;
loop
fetch test1 into test2;
dbms_output.put_line(test2.name); --注重,此處用的是test2.name
exit when test1%notfound;
end loop;
close test1;
end;
/


下面用隱性游標(biāo)試一下:
create or replace procedure test 
is 
cursor test1 is select name from devp;
test2 devp.name%type;
begin
for test2 in test1 loop
dbms_output.put_line(test2.name); --注重,此處用的是test2.name
end loop;
end;
/

create or replace procedure test 
is 
cursor test1 is select name from devp;
test2 test1%rowtype;
begin
for test2 in test1 loop
dbms_output.put_line(test2.name); --注重,此處用的是test2.name
end loop;
end;
/

由于使用的游標(biāo)的不同,我們最終在使用變量的時候還是有一些小區(qū)別的。希望大家以后在調(diào)代碼的時候少走彎路。

發(fā)表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發(fā)表
主站蜘蛛池模板: 兰西县| 武鸣县| 岳池县| 宜兴市| 双牌县| 东至县| 香格里拉县| 石泉县| 博湖县| 东安县| 乐清市| 蕲春县| 襄汾县| 四平市| 白银市| 江华| 英山县| 紫阳县| 鄂伦春自治旗| 台湾省| 三门县| 女性| 故城县| 铜山县| 繁昌县| 桂阳县| 资溪县| 淄博市| 绥滨县| 佛学| 平武县| 青田县| 洛南县| 潜山县| 昌江| 开封市| 崇义县| 阜阳市| 桦南县| 航空| 自贡市|