SQL中游標的使用

来源:https://www.cnblogs.com/feiquan/archive/2018/04/01/8684925.html
-Advertisement-
Play Games

類型: 1.普通游標 只有NEXT操作 2.滾動游標 有多種操作 1.普通游標 結果: 2.滾動游標 結果(可以參考第一個結果分析): 具體FETCH用法: Arguments NEXT Returns the result row immediately following the current ...


類型:

  1.普通游標   只有NEXT操作

  2.滾動游標 有多種操作

1.普通游標

DECLARE @username varchar(20),@UserId varchar(100)
DECLARE cursor_name CURSOR FOR --定義游標
    SELECT TOP 10 UserId,UserName FROM UserInfo
    ORDER BY UserId DESC
OPEN cursor_name --打開游標
FETCH NEXT FROM cursor_name INTO  @UserId,@username  --抓取下一行游標數據
WHILE @@FETCH_STATUS = 0
    BEGIN
        PRINT '用戶ID:'+@UserId+'            '+'用戶名:'+@username
        FETCH NEXT FROM cursor_name INTO @UserId,@username
    END
CLOSE cursor_name --關閉游標
DEALLOCATE cursor_name --釋放游標

結果:

用戶ID:zhizhi            用戶名:鄧鴻芝
用戶ID:yuyu            用戶名:魏雨
用戶ID:yujie            用戶名:李玉傑
用戶ID:yuanyuan            用戶名:王夢緣
用戶ID:YOUYOU            用戶名:lisi
用戶ID:yiyiren            用戶名:任毅
用戶ID:yanbo            用戶名:王艷波
用戶ID:xuxu            用戶名:陳佳緒
用戶ID:xiangxiang            用戶名:李慶祥
用戶ID:wenwen            用戶名:魏文文

2.滾動游標

--帶SCROLL選項的游標
SET NOCOUNT ON
DECLARE C SCROLL CURSOR FOR  --SCORLL 後,有了更多的游標操作(滾動游標)
    SELECT TOP 10 UserId,UserName FROM UserInfo
    ORDER BY UserId DESC
OPEN C 
FETCH LAST FROM C   --最後一行的數據,並將當前行為指定行
FETCH ABSOLUTE 4 FROM C  --從第一行開始的第4行數據,並將當前行為指定行  這裡的n可正可負,n>0 往下翻,n<0 往上翻
FETCH RELATIVE 3 FROM C  --相對於當前行的後3行數據,並將當前行為指定行  這裡的n可正可負
FETCH RELATIVE -2 FROM C --相對於當前行的前2行數據,並將當前行為指定行
FETCH PRIOR FROM C   ----相對於當前行的前1行數據
FETCH FIRST FROM C   --剛開始第一行的數據,並將當前行為指定行
FETCH NEXT FROM C   --相對於當前行的後1行數據

CLOSE C
DEALLOCATE C

結果(可以參考第一個結果分析):

具體FETCH用法:

FETCH   
          [ [ NEXT | PRIOR | FIRST | LAST   
                    | ABSOLUTE { n | @nvar }   
                    | RELATIVE { n | @nvar }   
               ]   
               FROM   
          ]   
{ { [ GLOBAL ] cursor_name } | @cursor_variable_name }   
[ INTO @variable_name [ ,...n ] ]

Arguments

NEXT
Returns the result row immediately following the current row and increments the current row to the row returned. If FETCH NEXT is the first fetch against a cursor, it returns the first row in the result set. NEXT is the default cursor fetch option.

PRIOR
Returns the result row immediately preceding the current row, and decrements the current row to the row returned. If FETCH PRIOR is the first fetch against a cursor, no row is returned and the cursor is left positioned before the first row.

FIRST
Returns the first row in the cursor and makes it the current row.

LAST
Returns the last row in the cursor and makes it the current row.

ABSOLUTE { n| @nvar}
If n or @nvar is positive, returns the row n rows from the front of the cursor and makes the returned row the new current row. If n or @nvar is negative, returns the row n rows before the end of the cursor and makes the returned row the new current row. If n or @nvar is 0, no rows are returned. n must be an integer constant and @nvar must be smallint, tinyint, or int.

RELATIVE { n| @nvar}
If n or @nvar is positive, returns the row n rows beyond the current row and makes the returned row the new current row. If n or @nvar is negative, returns the row n rows prior to the current row and makes the returned row the new current row. If n or @nvar is 0, returns the current row. If FETCH RELATIVE is specified with n or @nvar set to negative numbers or 0 on the first fetch done against a cursor, no rows are returned. n must be an integer constant and @nvar must be smallint, tinyint, or int.

GLOBAL
Specifies that cursor_name refers to a global cursor.

cursor_name
Is the name of the open cursor from which the fetch should be made. If both a global and a local cursor exist with cursor_name as their name, cursor_name to the global cursor if GLOBAL is specified and to the local cursor if GLOBAL is not specified.

@cursor_variable_name
Is the name of a cursor variable referencing the open cursor from which the fetch should be made.

INTO @variable_name[ ,...n]
Allows data from the columns of a fetch to be placed into local variables. Each variable in the list, from left to right, is associated with the corresponding column in the cursor result set. The data type of each variable must either match or be a supported implicit conversion of the data type of the corresponding result set column. The number of variables must match the number of columns in the cursor select list.

 


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • https://blog.csdn.net/cc289123557/article/details/51782449 1、dtb文件格式 dtb文件的格式如下圖 : NOTE:不同部分順序可能不一樣 2、文件頭boot_param_header 3、保留記憶體memory reserve map 這段 ...
  • 在Ubuntu 16.04上安裝Nginx ,Nginx (engine x) 是一個高性能的HTTP和反向代理伺服器,也是一個IMAP/POP3/SMTP伺服器 ...
  • 在Linux上使用ufw配置管理防火牆 ,UFW,即簡單防火牆uncomplicated firewall,是一個 Arch Linux、Debian 或 Ubuntu 中管理防火牆規則的前端。UFW 通過命令行使用(儘管它有可用的 GUI),它的目的是使防火牆配置簡單(即不複雜uncomplic... ...
  • 1、通過top,找出占用CPU高的進程ID 2、 如上圖所示,java的進程id為’52554′,接下來用top命令單獨對這個進程中的所有線程作監視: top-p52554 -H 3、如圖:(這時就看出來哪個java線程CPU高,哪個線程記憶體用的多) 4、 如上圖所示,linux下,所有的java內 ...
  • Docker是一個開源的容器引擎,它有助於更快地交付產品。 Docker可將應用程式和基礎設施層隔離,並且將基礎設施當作程式一樣進行管理。 使用Docker,可以更快地打包,測試以及部署應用程式,並可以縮短從編程到部署運行代碼的周期。 ...
  • 在伺服器上安裝chrome是用來模擬瀏覽器抓取數據的。 直接 yum install chrome是安裝不了的 你要做以下幾步就可以了。 配置yum源 1. vim /etc/yum.repos.d/google-chrome.repo 寫入以下內容: [google-chrome] name=go ...
  • 一、目錄概要 登錄系統後,用命令 ls / 即可看到所有目錄,如下圖: 二、目錄詳情 /bin: bin是Binary的縮寫, 這個目錄存放著最經常使用的命令。 /boot: 這裡存放的是啟動Linux時使用的一些核心文件,包括一些連接文件以及鏡像文件。 /dev : dev是Device(設備)的 ...
  • 1.登錄到oracle的 伺服器 2.切換到oracle 用戶 3.設置到當前操作的實例名:export ORACLE_SID=XXX 4.連接資料庫的命令行模式:sqlplus /nolog 5.sql: conn /as sysdba;用dba的身份登錄 6.修改過期的用戶密碼設置: 修改用戶密 ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...