• Articles
  • Tutorials
  • Interview Questions

What is a Cursor in SQL?

Tutorial Playlist

Cursors are a robust feature in SQL that allows professionals to work with data one row at a time. 

Watch this Video on MS SQL Training for Beginners

What is Cursor in SQL?

What is Cursor in SQL

A cursor in SQL is a database object that allows you to retrieve and manipulate data one row at a time. Cursors are typically used when performing operations on each result set row, such as updating or deleting. Cursors are similar to pointers in programming, allowing you to move through a result set and access the data in each row.

Want to get Certified in SQL? Learn from our SQL Expert with Intellipaat’s Microsoft SQL Certification and give a head-start to your Career in SQL!

Types of Cursors in SQL

Types of Cursors in SQL

When working with cursors in SQL, there are two main types: Implicit Cursors and Explicit Cursors. These cursors serve similar purposes, but there are some significant differences.

Implicit Cursors

Implicit cursors are created by the SQL engine whenever you execute a SELECT statement. The cursor is automatically opened, and you can fetch rows from the result set one at a time. 

Implicit cursors are helpful when retrieving a small amount of data and performing simple operations on each row.

Explicit Cursors

Explicit cursors are created by the programmer to retrieve and manipulate data from a result set. They provide greater control over the cursor, such as the ability to open and close it, fetch rows, and also, perform operations on the data.

In addition, Explicit cursors are specifically useful while dealing with large amounts of data and also performing complex operations on each row. Thus, they enable the programmer to process the data one row at a time. This can improve performance and reduce memory usage.

Wish to crack SQL job interviews? I Hope Intellipaat’s Top SQL Interview Questions for Freshers will make an impact to crack the job for you.

How to Use a Cursor in SQL?

How to Use a Cursor in SQL

Cursors are a valuable asset for developers working with databases. They enable the efficient processing of vast amounts of data and are widely utilized in numerous database applications.

To use a cursor in SQL, you first need to declare the cursor and specify the SELECT statement that will be used to retrieve the data. 

Here is an example of how to declare a cursor:

DECLARE cursor_name CURSOR FOR
SELECT column1, column2, column3
FROM table_name
WHERE condition;

Get 100% Hike!

Master Most in Demand Skills Now !

Once you have declared the cursor, you can open it and fetch rows from the result set using the FETCH statement. Here is an example of how to open and fetch rows from a cursor:

OPEN cursor_name;
FETCH NEXT FROM cursor_name INTO variable1, variable2, variable3;

You can then perform data operations using the variables you fetched. Once you have finished processing the row, you can re-fetch the next row using the FETCH statement.

Here is an example of how to fetch the next row:

FETCH NEXT FROM cursor_name INTO variable1, variable2, variable3;

You can continue fetching rows and performing operations on them until you have processed all the rows in the result set. Once you are finished, you can close the cursor using the CLOSE statement.

Check out our Database Certification courses to get professionally fitted as a Database specialist!

Difference between Cursor vs Loop in SQL 

Below is a comparison between Cursor and Loop in SQL presented in tabular form:

FeatureCursorLoop (WHILE or FOR)
DefinitionDefinition of cursor in sql states that it is a database object used for sequential data processing. It allows fetching and processing one row at a time.A control flow statement used to iterate over a set of records and execute a block of code repeatedly.
UsagePrimarily used for processing records row by row, typically in procedural programming within stored procedures or functions.Generally used within procedural code to execute a set of statements repeatedly based on a condition.
PerformanceCan have performance issues, especially when dealing with large result sets, as it involves individual fetch operations.Typically faster and more efficient as it processes records as a set and doesn’t require individual fetch operations.
Data RetrievalFetches rows one at a time and requires explicit commands like FETCH NEXT or FETCH PRIOR to navigate through the result set.Does not require explicit commands for data retrieval. It can directly process the result set without individual fetches.
NavigationRequires explicit navigation commands to move the cursor position through the result set.Does not require explicit navigation; it processes records based on the loop’s defined condition.

Get a comprehensive overview of how SQL INNER JOIN works, with examples and illustrations!

SQL Cursor Syntax

The SQL feature known as cursors makes it possible to traverse and manipulate data one row at a time. But to use a cursor, you need to know the correct syntax when declaring and working with it.

Here is the basic syntax for creating a cursor in SQL:

DECLARE cursor_name CURSOR FOR
SELECT column1, column2, column3
FROM table_name
WHERE condition;
OPEN cursor_name;
FETCH NEXT FROM cursor_name INTO variable1, variable2, variable3;
WHILE @@FETCH_STATUS = 0
BEGIN

— Do some processing here

FETCH NEXT FROM cursor_name INTO variable1, variable2, variable3;
END
CLOSE cursor_name;
DEALLOCATE cursor_name;

Learn how to use the SQL DISTINCT keyword to remove duplicate rows from your data!

SQL Cursor Example

Let’s take an example of how to use an explicit cursor in SQL. In this example, we will create a cursor that retrieves all the employees from the “employees” table and calculates their average salary.

DECLARE employee_cursor CURSOR FOR
SELECT employee_id, first_name, last_name, salary
FROM employees;
DECLARE @employee_id INT;
DECLARE @first_name VARCHAR(50);
DECLARE @last_name VARCHAR(50);
DECLARE @salary DECIMAL(18, 2);
DECLARE @total_salary DECIMAL(18, 2) = 0;
DECLARE @num_employees INT = 0;
DECLARE @avg_salary DECIMAL(18, 2) = 0;
OPEN employee_cursor;
FETCH NEXT FROM employee_cursor INTO @employee_id, @first_name, @last_name, @salary;
WHILE @@FETCH_STATUS = 0
BEGIN
SET @total_salary = @total_salary + @salary;
SET @num_employees = @num_employees + 1;
FETCH NEXT FROM employee_cursor INTO @employee_id, @first_name, @last_name, @salary;
END
CLOSE employee_cursor;
DEALLOCATE employee_cursor;
SET @avg_salary = @total_salary / @num_employees;
SELECT 'Average Salary' AS Metric, @avg_salary AS Value;

In this given example, a cursor called “employee_cursor”, retrieves all the employees from the “employees” table. It then reflects declare variables to hold the employee data and initialize variables to calculate the average salary.

We open the cursor and fetch the first row into the variables. 

Then enter a loop that calculates the total salary and the number of employees. We fetch the next row until there are no more rows to fetch.

Once we have processed all the rows, we close and deallocate the cursor. We then calculate the average salary by dividing the total salary by the number of employees and output the result.

Check out the SQL Tutorial to learn more about its concepts!

Advantages of Cursor in SQL

Below are the advantages of using a cursor in SQL:

  • Row-Level Processing: Cursors enable row-level processing, allowing developers to access and manipulate data one row at a time. This level of control is beneficial for complex tasks that require specific operations on individual rows.
  • Data Navigation: Cursors provide explicit navigation commands like FETCH NEXT or FETCH PRIOR, enabling easy traversal through the result set. This feature allows developers to efficiently process data in a specified order.
  • Transaction Control: Cursors can be used within transactions, allowing developers to manage data integrity and consistency during complex operations, ensuring that changes are made in a controlled manner.
  • Complex Query Handling: Cursors are useful when dealing with complex queries that involve multiple tables and require procedural logic, as they provide a way to process and manage the data step-by-step, simplifying the code implementation.

Interested in SQL? Check out this blog on How to Become an SQL Developer to get ahead in your career.

Disadvantages of Cursor in SQL

Cursors in SQL have certain disadvantages that developers should consider when using them:

  • Performance Overhead: Cursors can incur significant performance overhead, especially with large result sets, as individual fetch operations can be time-consuming.
  • Resource Consumption: Cursors consume server resources while they are open, which can impact overall system performance, particularly in high-concurrency environments.
  • Complexity: Implementing and managing cursors can lead to complex and less readable code, making the codebase harder to maintain and debug.
  • Locking and Blocking: Cursors can cause locking and blocking issues, affecting other processes that need access to the same data, potentially leading to contention and reduced system responsiveness.

Conclusion

In conclusion, cursors in SQL can be a helpful tool for handling complex queries requiring individual row processing or executing a stored procedure or trigger for each row. However, they can also have some drawbacks, such as decreased efficiency and potential locking issues in a multi-user environment.

Understanding when and how to use cursors properly is essential to avoid these potential problems. Generally, it is recommended to use cursors sparingly and only when necessary. It is best to use set-based operations whenever possible to improve performance when working with large datasets.

Have more queries about SQL? Visit our SQL Community and get them clarified!

Course Schedule

Name Date Details
SQL Training 04 May 2024(Sat-Sun) Weekend Batch
View Details
SQL Training 11 May 2024(Sat-Sun) Weekend Batch
View Details
SQL Training 18 May 2024(Sat-Sun) Weekend Batch
View Details