Last active
December 7, 2017 17:36
-
-
Save ArtemAvramenko/64c7cec1b77c62a0cda5409c3c364242 to your computer and use it in GitHub Desktop.
foreach t/sql
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- for each... | |
DECLARE @ItemId INT | |
DECLARE ItemCursor CURSOR FOR | |
SELECT ItemId | |
FROM Items | |
WHERE ... | |
OPEN ItemCursor | |
WHILE 1 = 1 | |
BEGIN | |
FETCH NEXT FROM ItemCursor INTO @ItemId | |
IF @@FETCH_STATUS <> 0 BREAK | |
-- ...@ItemId | |
END | |
CLOSE ItemCursor | |
DEALLOCATE ItemCursor |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment