About 302,000 results
Open links in new tab
  1. DECLARE CURSOR (Transact-SQL) - SQL Server | Microsoft Learn

    Nov 18, 2025 · Defines the attributes of a Transact-SQL server cursor, such as its scrolling behavior and the query used to build the result set on which the cursor operates.

  2. SQL Server Cursor Example

    Sep 28, 2025 · A SQL Server cursor is a set of T-SQL logic that loops over a predetermined number of rows one at a time. The purpose of the cursor may be to update one row at a time …

  3. SQL Server Cursor Explained By Examples

    In this tutorial, you will learn how to use the SQL Server cursor to process a result set, one row at a time.

  4. What is Cursor in SQL - GeeksforGeeks

    Aug 4, 2025 · A cursor in SQL is a database object used to process data one row at a time, useful when row-by-row handling is needed instead of bulk processing. It temporarily stores data for …

  5. T-SQL Cursors - Create cursors in SQL Server

    T-SQL Cursors: Transact-SQL Server - In this section you can learn how to work with cursors using operations like declare cursor, create procedure, fetch, delete, update, close, set, …

  6. Cursor Example - Brent Ozar Unlimited®

    In this 16-minute video, Doug Lane explains how to use a date table, which will help you work around cursors that loop through date lists:

  7. A Beginner's Guide to an SQL Cursor (In Many Databases)

    Jul 6, 2020 · Cursors are a feature in many SQL databases that allow you to work with data. They exist in SQL Server, Oracle, MySQL, PostgreSQL, and likely many other databases. But what …

  8. SQL Cursors Explained: Complete Guide with Best Practices

    Dec 19, 2024 · Master SQL cursors for row-by-row processing. Learn cursor types, implementation, performance considerations, and alternatives across SQL Server, …

  9. SQL SQL-Cursors | Coddy Reference

    Learn about SQL cursors, their purpose, syntax, and common use cases in database management. Discover how to implement and optimize cursors in SQL queries.

  10. What is the use of a cursor in SQL Server? - Stack Overflow

    Sep 25, 2018 · Cursor works with the rows of the result set sequentially - row by row. A cursor can be viewed as a pointer to one row in a set of rows and can only reference one row at a …