SQL遊標使用及實例

declare my_cursor cursor scroll dynamic /*scroll表示可隨意移動遊標指針(不然只能向前),dynamic表示能夠讀寫遊標(不然遊標只讀)*/ for select * from t_msgsql open my_cursor declare @name sysname fetch next from my_cursor into @name while
相關文章
相關標籤/搜索