SQL server usage cursor

Source: Internet
Author: User

Cursors provide a flexible way to retrieve and operate data from tables. cursors are mainly used on servers to process SQL statements sent from clients to servers, or data processing requests in batch processing, stored procedures, and triggers.

How can I use a cursor?
First declare the cursor:

Declare cursor_name cursor [local | global] [forward_only | scroll] [static | keyset] [dynamic | fast_forward]... for select_statement [for update [of column_name [,... n]

Then open the cursor:

Open {global] cursor_name} | cursor_variable_name}

Read data from the cursor:

Fetch [[next | prior | first | last | absolute {n | @ nvar} | relative {n @ nvar}] from] {global] cursor_name} | @ cursor_variable_name} [@ variable_name [,... n]

Close and release the cursor. They are:

Close {[global] cursor_name} | cursor_variable_name}
Deallocate {[global] cursor_name} | @ cursor_variable_name}


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.