初学游标的困惑
以下是我编写的游标:declare
v_xm system.xsxxb.xm%type;
v_bj system.xsxxb.bj%type;
v_xh system.xsxxb.xh%type;
cursor mycursor(v_xh_1 system.xsxxb.xh%type) is
select xm,bj from system.xsxxb where xh=v_xh;
begin
v_xh='20020156';
open mycursor(v_xh);
fetch mycursor into v_xm,v_bj;
close mycursor;
dbms_output.put_line(v_xm||'的班级是'||v_bj);
end;
请问一下,为什么最后结果不能输出dbms_output.put_line(v_xm||'的班级是'||v_bj);这段。
而只显示PL/SQL过程已完成;为什么?请帮我解决一下;