declare cur cursor for select id from tbl open cur declare @id int fetch next from cur into @id while (@@FETCH_STATUS = 0) begin print(@id) fetch next from cur into @id end close cur deallocate cur -- just replace "tbl" with your table name and "id" with your field name -- and do whatever you want in begin-end block (now it simply prints the id of each record)
プレ>