sql 游標的使用—游標FOR循環(huán)小例子_Mssql數(shù)據(jù)庫教程

      編輯Tag賺U幣

      推薦:深入SqlServer2008 數(shù)據(jù)庫同步的兩種方式(Sql JOB)的分析介紹
      深入SqlServer2008 數(shù)據(jù)庫同步的兩種方式(Sql JOB)的分析介紹

      例子: 顯示emp表所有雇員名及其工資:

      復(fù)制代碼 代碼如下:www.wf0088.com

      declare
      cursor emp_cursor is select ename,sal from emp ;
      begin
      for emp_record in emp_cursor loop
      dbms_output.put_line('姓名: '||emp_record.ename||' , 工資: '||emp_record.sal);
      end loop;
      end ;
      /

      anonymous block completed
      姓名: SMITH , 工資: 880
      姓名: ALLEN , 工資: 1600
      姓名: WARD , 工資: 1250
      姓名: JONES , 工資: 3272.5
      姓名: MARTIN , 工資: 1250
      姓名: BLAKE , 工資: 2850
      姓名: CLARK , 工資: 2450
      姓名: SCOTT , 工資: 2000
      姓名: KING , 工資: 5000
      姓名: TURNER , 工資: 1500
      姓名: ADAMS , 工資: 1210
      姓名: JAMES , 工資: 950
      姓名: FORD , 工資: 3300
      姓名: MILLER , 工資: 2100

      分享:基于B-樹和B+樹的使用:數(shù)據(jù)搜索和數(shù)據(jù)庫索引的詳細介紹
      本篇文章介紹了,基于B-樹和B+樹的使用:數(shù)據(jù)搜索和數(shù)據(jù)庫索引的詳細分析。需要的朋友參考下

      來源:模板無憂//所屬分類:Mssql數(shù)據(jù)庫教程/更新時間:2013-05-02
      相關(guān)Mssql數(shù)據(jù)庫教程