Significance of @ fetch_status In the midstream of SQL Server

Source: Internet
Author: User

@ Fetch_status

@ Fetch_status is a global variable of MSSQL.

The return value has the following three meanings: [return type Integer]

-0 fetch statement succeeded

-1 The fetch statement fails or this row is not in the result set.

-2 The extracted row does not exist.

@ Fetch_status the value is changed through fetch next from.

"Fetch next from cursor"

Instance:

The following example uses @ fetch_status to control the cursor activity in a while loop.

Declare employee_cursor cursor

Select lastname, firstname from northwind. DBO. Employees

Open employee_cursor

Fetch next from employee_cursor

While @ fetch_status = 0

Begin

Fetch next from employee_cursor

End

Close employee_cursor

Deallocate employee_cursor

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.