尝试在SQL中的数组中复制表内容

时间:2018-10-04 15:50:12

标签: sql function

我正在尝试实现以下代码,以将学生表的credits(tot_cred)复制到数字数组中。但是数组似乎无法访问。

Create or replace procedure sort_cg ( deptname varchar) as arr real; len number; begin Select tot_cred bulk collect into arr From student Where dept_name = deptname; for i in 1..arr.count loop dbms_output.put_line (arr(i)); end loop; end;

错误是:第6行错误:PL / SQL:语句被忽略

0 个答案:

没有答案