当前位置: 代码迷 >> Oracle管理 >> Oracle中如何实现SQLserver中的break,continue,fetch next功能
  详细解决方案

Oracle中如何实现SQLserver中的break,continue,fetch next功能

热度:225   发布时间:2016-04-24 05:39:16.0
Oracle中怎么实现SQLserver中的break,continue,fetch next功能
转移SQLserver的存储过程到Oracle中,Oracle中不支持break,continue,fetch next等功能,
求各位高手指导下,Oracle中怎么实现这些功能,越具体越好

------解决方案--------------------
while v_cur >10 loop 
--处理语句 
exit;---这样也行
end loop; 

代码迷推荐解决方案:oracle存储过程,http://www.daimami.com/search?q=177537
  相关解决方案