SQL SERVER 游標循環讀取表數據


【cursor】游標:用於循環表行數據,類似指針

格式如下:

declare tempIndex cursor for (select * from table) --定義游標
open tempIndex  --打開游標
fetch next from tempIndex into @x  --抓取下一行數據給變量
while @@fetch_status=0  --0表示抓取成功,1表示抓取失敗,2表示不存在抓取行
begin
--sql 語句
end
close tempIndex  --關閉游標
deallocate tempIndex  --釋放游標

  

 

  


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM