- 论坛徽章:
- 0
|
代码如下:
create or replace procedure TestStudent
as
v_id scott.studentinfo.id%type;
v_oname scott.studentinfo.oname%type;
CURSOR one is
SELECT id,oname FROM scott.studentinfo;
begin
open one;
loop
fetch one into v_id,v_oname;
dbms_output.put_line(v_id);
dbms_output.put_line(v_oname);
exit when one%notfound;
end loop;
close one;
commit;
end TestStudent;
scott.studentinfo 表如下:
ID ONAME SEX BIRTHDAY SAL
------- -------------------- --- ----------- ----------
1004 tigger 男 1993-3-9 4000
1006 yinlenc 女 1998-8-9 300
1005 scott 男 1993-3-9 4000
在pl/sql中执行该存储过程,结果为
1004
tigger
1006
yinlenc
1005
scott
1005
scott
为什么最后两行一样 ? |
|