当前位置: 代码迷 >> Oracle管理 >> 问上,上面这段话应该如何改啊
  详细解决方案

问上,上面这段话应该如何改啊

热度:4   发布时间:2016-04-24 04:59:37.0
问下,,下面这段话应该怎么改啊?
我的表是这样定义的 test(id,value)
下面这句话应该怎么改啊

--設置屏幕顯示
set serveroutput on;
--測試遊標
declare
  type cur_type is ref cursor;
  cur cur_type;
  rec emp%rowtype;
  str varchar2(50);
begin
  str:= 'select ename from emp';
  open cur for str;
  loop
  fetch cur into rec.ename;
  exit when cur%notfound;
  dbms_output.put_line(rec.ename);
  end loop;
end;
  相关解决方案