Collections:
"OPEN" - Executing the Query of a Cursor in SQL Server
How To Execute the Cursor Queries with "OPEN" Statements in SQL Server Transact-SQL?
✍: FYIcenter.com
Once a cursor is declared, you need to execute the query attached to the cursor so that the result set returned from the query can be accessed through the cursor. To execute the cursor query, you should use the OPEN statement as in this format:
OPEN cursor_name;
When you are done with using the result set attached to a cursor, you should close the result set to free up server resources.
The tutorial example below shows you how to open and close a cursor:
USE FyiCenterData; GO DECLARE fyi_cursor CURSOR FOR SELECT * FROM fyi_links; OPEN fyi_cursor; -- result set is ready to use -- other statements CLOSE fyi_cursor; DEALLOCATE fyi_cursor; GO
⇒ "FETCH" - Fetching the Next Row from a Cursor in SQL Server
⇐ "DECLARE ... CURSOR" - Declaring Cursor Objects in SQL Server
2016-10-17, 1881🔥, 0💬
Popular Posts:
How To Round a Numeric Value To a Specific Precision in SQL Server Transact-SQL? Sometimes you need ...
How To Format Time Zone in +/-hh:mm Format in SQL Server Transact-SQL? From the previous tutorial, y...
What Is "mysqld" in MySQL? "mysqld" is MySQL server daemon program which runs quietly in background ...
Is PL/SQL Language Case Sensitive in Oracle? PL/SQL language is not case sensitive: Reserved words a...
How To Generate CREATE VIEW Script on an Existing View in SQL Server? If you want to know how an exi...