Loops, for loops, cursors in SQL

Source: Internet
Author: User

Loops, for loops, cursors in SQL

When we use SQL statements to process data, we may encounter some need to iterate over a table and act on it (add, modify, delete), and we need to use the for or foreach that we often use in programming, but writing loops in SQL often seems so laborious, to turn over the information on the Web, There is no way to find a few correct and able to execute the loop processing data, here, I will share with you!

To write like a for loop in SQL, I use a cursor in SQL to implement, of course, there is a for loop in SQL, while does, and so on, I only use the cursor way to do the example, the other way people are interested to study, Successful students can reply to the following and put the code out, share with you!

Gossip less, on the example:

1. Iterate through the cursor to update and delete data from the Memberaccount table

DECLAREMy_cursorCURSOR --Defining Cursors
for (SELECT *  fromdbo. Memberaccount)--find the desired set to be placed in the cursor
OPENMy_cursor;--Open Cursor
FETCH NEXT  fromMy_cursor;--read the first row of data
while @ @FETCH_STATUS = 0
BEGIN
--UPDATE dbo. Memberaccount SET UserName = UserName + ' A ' WHERE current of my_cursor; --Update
--DELETE from dbo. Memberaccount WHERE Current of my_cursor; --Delete
FETCH NEXT  fromMy_cursor;--reads the next row of data
END
CLOSEMy_cursor;--Close Cursors
deallocateMy_cursor;--Releasing Cursors
GO

2. Use cursors to iterate over the data in the Memberservice table (update the time each user purchased the service)

DECLARE @UserId varchar( -)
DECLAREMy_cursorCURSOR --Defining Cursors
for (SELECTUserId fromdbo. Memberaccount)--find the desired set to be placed in the cursor
OPENMy_cursor;--Open Cursor
FETCH NEXT  fromMy_cursor into @UserId; --reads the first row of data (puts the UserID in the Memberaccount table into the @userid variable)
while @ @FETCH_STATUS = 0
BEGIN
PRINT @UserId; --Print data (print the UserID in the Memberaccount table)
UPDATEdbo. MemberserviceSETServiceTime= DATEADD(Month, 6, getdate()) WHEREUserId= @UserId; --Update Data
FETCH NEXT  fromMy_cursor into @UserId; --reads the next row of data (the UserID in the Memberaccount table is placed in the @userid variable)
END
CLOSEMy_cursor;--Close Cursors
deallocateMy_cursor;--Releasing Cursors
GO

The above two examples should be able to solve all of the requirements of our use of loops in SQL, if not enough, we can expand according to the above two examples, we hope to help you solve some of the similar problems.

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.