Sqlserver
 sql >> Base de données >  >> RDS >> Sqlserver

Exemple de requête SQL Server 2008 sur la création d'un curseur pour parcourir les enregistrements

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)