我第一個遊標

來源:互聯網
上載者:User

--從學生資料庫的學生表中返回學號,姓名,性別
declare @num char(6)
declare @name char(10)
declare @sex char(2)
declare stu_cursor cursor --定義遊標
for select s_no,s_name,s_sex from student
open stu_cursor --開啟遊標
fetch stu_cursor into @num,@name,@sex
while(@@FETCH_STATUS=0)
begin
 print @num
 print @name
 print @sex
 fetch stu_cursor into @num,@name,@sex
end
close stu_cursor --關閉遊標
deallocate stu_cursor --釋放遊標
go




@@FETCH_STATUS返回被 FETCH 語句執行的最後遊標的狀態,而不是任何當前被串連開啟的遊標的狀態。

傳回值
描述
0
FETCH 語句成功。
-1
FETCH 語句失敗或此行不在結果集中。
-2
被提取的行不存在。

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.