SqlServer游标操作

CLOSE orderNum_02_cursor
deallocate orderNum_02_cursor
DECLARE orderNum_02_cursor cursor SCROLL for select vcThemeId from LG_LiveTheme_Order
DECLARE @themeid varchar(10)
OPEN orderNum_02_cursor
fetch first from orderNum_02_cursor INTO @themeid
WHILE @@FETCH_STATUS=0
BEGIN
PRINT @themeid
FETCH NEXT FROM orderNum_02_cursor INTO @themeid
END

CLOSE orderNum_02_cursor
deallocate orderNum_02_cursor

posted on 2019-09-10 11:52  newlives  阅读(202)  评论(0编辑  收藏  举报