Collections:
What Are Cursors in SQL Server
What Are Cursors in SQL Server Transact-SQL?
✍: FYIcenter.com
A cursor is a special data type that represents a result set returned by a SELECT query statement. There are several notes about cursor you need to remember:
⇒ "DECLARE ... CURSOR" - Declaring Cursor Objects in SQL Server
⇐ Using Cursors in SQL Server Transact-SQL
2016-10-17, 3026🔥, 0💬
Popular Posts:
How To Drop an Index in Oracle? If you don't need an existing index any more, you should delete it w...
Where to find reference information and tutorials on MySQL database functions? I want to know how to...
How To Use "IF ... ELSE IF ..." Statement Structures in SQL Server Transact-SQL? "IF ... ELSE IF ......
How To Get Year, Month and Day Out of DATETIME Values in SQL Server Transact-SQL? You can use DATEPA...
What Happens If the UPDATE Subquery Returns Multiple Rows in SQL Server? If a subquery is used in a ...