您所在的位置:
首页 > 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:'|
网友评论