首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 数据库 > 其他数据库 >

oracle 循环事例

2012-08-08 
oracle 循环例子declaretemp_emp test_tw%rowtypecursor cur2 is select * from test_twbeginif cur2%is

oracle 循环例子

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;  

?

热点排行