Sqlserver
 sql >> डेटाबेस >  >> RDS >> Sqlserver

SQL सर्वर 2008 रिकॉर्ड के माध्यम से लूप करने के लिए एक कर्सर बनाने पर उदाहरण का अनुरोध करता है

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. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. इकाई फ्रेमवर्क EF4.1 - संग्रहीत कार्यविधि कंटेनर में नहीं मिल सका

  2. SQL में न्यूनतम दो मान प्राप्त करना

  3. एंटिटी फ्रेमवर्क में ऑपरेटर की तरह?

  4. एक कॉलम के लिए SQL Server 2008 हजारों विभाजक

  5. एकाधिक डेटाबेस को एकल डेटाबेस में मर्ज करें