oracle cursor遊標迴圈比較遊標元素是否相同

wisdomone1發表於2011-12-14
  上文測試了oracle plsql迴圈比較集合元素是否相同
 http://space.itpub.net/9240380/viewspace-713314
隨即又測試如下程式碼:

declare
cursor cur_emp is select deptno from emp order by deptno;
v_deptno emp.deptno%type;
v_1 emp.deptno%type;
begin
open cur_emp;
loop
fetch cur_emp into v_deptno;
exit when cur_emp%notfound;
if cur_emp%rowcount=1 then
dbms_output.put_line(v_deptno);
end if;
if v_1!=v_deptno then
dbms_output.put_line(v_deptno);
end if;
v_1:=v_deptno;
end loop;
close cur_emp;
end;

備註:
   測試表資料皆一致,俱為oracle之scott使用者的emp表

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/9240380/viewspace-713318/,如需轉載,請註明出處,否則將追究法律責任。

相關文章