sql >> Database teknologi >  >> RDS >> Sqlserver

Eksempel på SQL Server 2008-anmodning om oprettelse af en markør til at gå gennem poster

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)



  1. Kopier to kolonner fra en tabel til en anden, men kun unikke værdier

  2. Python unicode-kodningsproblem

  3. Sphinx 2.0.4 Installationsfejl med MAMP 2.0:Kan ikke finde MySQL-headere

  4. Python og SQLite forbehold