Saturday 2 November 2024

Table Delete operator in SQL Server execution plan

The table delete operator in an execution plan represents the process of deleting rows from a table. It is used whenever a delete statement is executed.

Icon of table delete operator

See the example.

Here we are deleting record from a table

DELETE FROM employees
WHERE  employeeid = 1 

See the execution plan

No comments:

Post a Comment

If you have any doubt, please let me know.

Popular Posts