Three methods for implementing SQL Server dynamic cursors

Source: Internet
Author: User

 

Code
Method 1:

Create Table # Tabtmp (ID Int )
Insert # Tabtmp Execute (' Select ID From ' + @ Tablename )

Declare Curone Cursor For
Select ID From # Tabtmp
Open Curone
Fetch Next From Curone Into @ ID

Method 2 for implementing sqlserver Dynamic Cursor:
Exec('
DeclareCuroneCursorGlobal
For'+ @ Asql)
OpenCurone
FetchCurone

Method 3 for implementing sqlserver Dynamic Cursor:
Declare @ SQL Varchar ( 2000 ),
@ Typefield Varchar ( 100 ),
@ Tablename Varchar ( 255 ),
@ Name Varchar ( 100 )
Select @ Typefield = ''Name '', @ Tablename = ''Sysobjects''
Set @ SQL = '' Declare Cutemp Cursor For ''
+ '' Select Distinct '' + @ Typefield + '' From '' + @ Tablename
Exec ( @ SQL )
Open Cutemp
Fetch Cutemp Into @ Name
While ( @ Fetch_status = 0 )
Begin
Print @ Name
Fetch Cutemp Into @ Name
End
Close Cutemp [ Page ]
Deallocate Cutemp

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.