【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 --釋放游標