ORA-06550: PLS-00201: 必须声明标识符 'DBMS_OUTPUT_LINE' ORA-06550: PL/SQL: Statement ignored
SQL>declarecursorstudent_cur2is3selectsno,sname,cssj4fromstudent;5begin6openstudent_c...
SQL> declare cursor student_cur
2 is
3 select sno,sname,cssj
4 from student;
5 begin
6 open student_cur;
7 dbms_output_line(student_cur%rowcount);
8 end;
9 /
dbms_output_line(student_cur%rowcount);
*
第 7 行出现错误:
ORA-06550: 第 7 行, 第 1 列:
PLS-00201: 必须声明标识符 'DBMS_OUTPUT_LINE'
ORA-06550: 第 7 行, 第 1 列:
PL/SQL: Statement ignored 展开
2 is
3 select sno,sname,cssj
4 from student;
5 begin
6 open student_cur;
7 dbms_output_line(student_cur%rowcount);
8 end;
9 /
dbms_output_line(student_cur%rowcount);
*
第 7 行出现错误:
ORA-06550: 第 7 行, 第 1 列:
PLS-00201: 必须声明标识符 'DBMS_OUTPUT_LINE'
ORA-06550: 第 7 行, 第 1 列:
PL/SQL: Statement ignored 展开
展开全部
%rowcount一般用于更新或者删除等修改类语句后面执行,代表操作数。
你这个dbms_output_line 写错了,应改为:dbms_output.put_line
declare cursor student_cur
is
select sno,sname,cssj
from student;
begin
open student_cur;
dbms_output.put_line(student_cur%rowcount);
end;
/
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询