oracle 循环例子
程序员文章站
2022-07-14 19:17:16
...
declare temp_emp test_tw%rowtype; cursor cur2 is select * from test_tw; begin if cur2%isopen = false then open cur2; end if; for i in 0..5 loop fetch cur2 into temp_emp; exit when cur2%notfound; dbms_output.put_line('编号:'||temp_emp.id||','||'名字:'||temp_emp.xm); end loop; close cur2; end;
上一篇: 产品设计
下一篇: axis2 1.6.1 与项目整合