oracle游标使用实例 最新更新| 软件分类| 专题汇总| 手机版

您所在的位置:首页 > oracle游标使用实例 > 信息评论 >

oracle游标使用实例

  declare  counter number(2):=0;  sm number(2):=0;  cursor kc is  select id from kingcat  natural join kingcat2;  begin  open kc;  loop  fetch kc into  counter;  exit when kc%notfound;  DBMS_output.put_line('su:'|

网友评论

发表评论

(您的评论需要经过审核才能显示)