oracle cursor oracle 游标用法

oracle cursor oracle 游标用法

定义 :
  cursor c_stkcode is
    select * from dl_stkcode
    where exchgcode_=exchgcode and stkcode_=stkcode;
  stkrow c_stkcode%rowtype; 

使用 :
open c_stkcode;
  fetch c_stkcode into stkrow;




已用时间:   00 00 02.00
idmp
@idmp - 10.47 . 162.56 >   DECLARE
  
2   TYPE x  IS  REF  CURSOR   RETURN  dual % ROWTYPE;
  
3   v_cur x;
  
4    begin
  
5    OPEN  v_cur  for    SELECT   *   FROM  dual;
  
6    end ;
  
7    /

PL
/ SQL 过程已成功完成。

已用时间:  
00 00 00.31



你可能感兴趣的:(oracle cursor oracle 游标用法)