亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

達夢游標的簡單使用

發布時間:2020-08-07 00:11:27 來源:ITPUB博客 閱讀:606 作者:yanhengdoudou 欄目:數據庫

1         顯示游標

create table T1 ( sex varchar2 ( 10 ), name varchar2 ( 20 ));

insert into t1 values ( ' ' , ' 小劉 ' );

insert into t1 values ( ' ' , ' 小陳 ' );

insert into t1 values ( ' ' , ' 曉燕 ' );

insert into t1 values ( ' ' , ' 小紅 ' );

commit ;

select * from t1 ;

達夢游標的簡單使用

DECLARE

  CURSOR c_t1_cursor is select sex , name from t1 where sex= ' ' ;

 v_sex  t1 . sex %type ;

 v_name t1 . name %type ;

begin

  open c_t1_cursor ;

  loop

  fetch c_t1_cursor into v_sex , v_name ;

  exit when c_t1_cursor%notfound ;

  print ( v_name|| ' is ' ||v_sex );

  end loop ;

  close c_t1_cursor ;

end ;

  達夢游標的簡單使用

注:游標的定義要在匿名塊的定義部分定義,游標打開、提取數據、關閉都在執行部分。

2         參數游標

語法:

CURSOR cursor_name

[(parameter_name datatype, ...)]

IS

select_statement;

......

OPEN cursor_name(parameter_value,.....) ;

DECLARE

  CURSOR c_t1_cursor ( c_sex varchar2 ( 10 )) is select sex , name from t1 where sex=c_sex ;

 v_sex  t1 . sex%type ;

 v_name t1 . name%type ;

begin

  open c_t1_cursor ( ' ' );

  loop

  fetch c_t1_cursor into v_sex , v_name ;

  exit when c_t1_cursor%notfound ;

  print ( v_name|| ' is ' ||v_sex );

  end loop ;

  close c_t1_cursor ;

end ;

  達夢游標的簡單使用

注:open c_t1_cursor(' ') 也可以改為 open c_t1_cursor ( &sex );

3         游標for 循環

語法:

FOR record_name IN cursor_name|select_statement LOOP

statement1;

statement2;

......

END LOOP;

begin

  for t1_record in ( select sex , name from t1 where sex= ' ' ) loop

   print ( t1_record . name|| ' is ' ||t1_record . sex );

  end loop ;

end ;

  達夢游標的簡單使用

4         游標表達式

語法:

TYPE ref_type_name IS REF CURSOR [RETURN return_type];

cursor_variable ref_type_name;

ref_type_name :用于指定自定義類型名

RETURN :用于指定返回結果的數據類型

cursor_variable :用于指定游標變量名

DECLARE

  TYPE t1_cursor IS REF CURSOR ;

 my_cursor t1_cursor ;

 v_sex  t1 . sex%type ;

 v_name t1 . name%type ;

begin

  OPEN my_cursor FOR select sex , name from t1 where sex= ' ' ;

  LOOP

  FETCH my_cursor INTO v_sex , v_name ;

  EXIT WHEN my_cursor%NOTFOUND ;

  print ( v_name|| ' is ' ||v_sex );

  end loop ;

  close my_cursor ;

end ;

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

灵丘县| 门源| 界首市| 达孜县| 多伦县| 龙南县| 芜湖市| 平邑县| 奈曼旗| 商洛市| 新安县| 任丘市| 上林县| 朝阳县| 台湾省| 海城市| 蓝山县| 苍溪县| 阜新| 金坛市| 清远市| 修文县| 文化| 连江县| 封丘县| 韶关市| 阳山县| 合川市| 济源市| 临朐县| 布尔津县| 定日县| 华蓥市| 清丰县| 赣榆县| 白山市| 林周县| 乳山市| 恭城| 含山县| 金堂县|