sql >> Databasteknik >  >> RDS >> Sqlserver

Exempel på SQL Server 2008-begäran om att skapa en markör för att gå igenom 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. MySQL Group By för att visa senaste resultatet

  2. Uppdatera en Oracle-materialiserad vy i ett Spring Data Repository

  3. Oracle UTFÖR IMMEDIATE till en markör

  4. org.hibernate.type.TextType och Oracle