Postgres ON DELETE CASCADE - A Guide

intro

In this article, we’re going to look at how to use the ON DELETE CASCADE feature in PostgreSQL to delete child records automatically when you delete a parent record using a tool like DbVisualizer. Find out everything about it in this blog!

Tools used in the tutorial
Tool Description Link
Dbvisualizer DBVISUALIZER
TOP RATED DATABASE MANAGEMENT TOOL AND SQL CLIENT
PostgreSQL logo POSTGRESQL
THE POSTGRESQL DATABASE

Preface

You’ve probably heard about ON DELETE CASCADE in Postgres. In relational databases, a foreign key constraint is a constraint that links a column in one table to a column in another table. The foreign key column must contain a value also present in the primary key column of the referenced table.

ON DELETE CASCADE is used to specify that when a row is deleted from the parent table, all rows in the child table that reference the deleted row should also be deleted. This is useful for maintaining the integrity of the database.

The Role of Foreign Key Constraints

Foreign key constraints are integral parts of database designs that are responsible for maintaining the consistency of data in relational databases. They do so by preventing the insertion of inconsistent data in databases. Now that we have a fair understanding of what foreign key constraints are, let us try to understand what the ON DELETE CASCADE feature/option in Postgres is.

Understanding Postgres ON DELETE CASCADE

The ON DELETE CASCADE, a referential action in PostgreSQL, allows database developers to automatically delete related rows in child tables when a parent row is deleted from the parent table. This feature makes sure that dependent rows are deleted along with their related rows, which helps you preserve referential integrity in the database.

To implement the DELETE CASCADE action, you need to have two related tables: the parent_table and the child_table:

Copy
        
1 CREATE TABLE parent_table( 2 id SERIAL PRIMARY KEY, 3 ... 4 ); 5 6 CREATE TABLE child_table( 7 id SERIAL PRIMARY KEY, 8 parent_id INT, 9 FOREIGN_KEY(parent_id) 10 REFERENCES parent_table(id) 11 ON DELETE CASCADE 12 );

Here, the first table, ie. the parent_table has a unique identifier, and the second table, the child_table contains a reference to that identifier. The foreign key relationship allows each record in the child_table to be linked to a specific record in the parent_table. The ON DELETE CASCADE clause ensures that if a parent record is deleted, all associated child records are automatically removed.

ON DELETE CASCADE Example

For an example illustrating how ON DELETE CASCADE works in PostgreSQL, let’s assume we have two tables namely employees and departments. The lecturers table has an id column and the facultiestable has an faculty_id column. A foreign key constraint can be created on the faculty_id column in the facultiestable to create a relationship between the two tables by referencing the id column in the lecturers table.

The query below will create the lecturers and faculties table and will also define the foreign key constraint:

Creating tables and foreign key constraint in DbVisualizer
Creating tables and foreign key constraint in DbVisualizer

It is worth noting in this instance, that a faculty may have one or more lecturers and each lecturer belongs to a faculty. In the lecturers table, the faculty_id is a foreign key that references the id column of the faculties table.

The foreign key has the ON DELETE CASCADE clause that specifies the referential action to take when a row in the faculties table is deleted.

Next, let us populate the tables with this query:

Copy
        
1 INSERT INTO faculties (name) 2 VALUES 3 ('Science'), 4 ('Humanities') 5 6 INSERT INTO lecturers (name, faculty_id) 7 VALUES 8 ('Okai Wenger', 1), 9 ('Bassuah Kelvin', 1), 10 ('Mike Smith', 2);

Running the query will result in the two tables below:

The *Lecturers* table in DbVisualizer
The ‘Lecturers’ table in DbVisualizer
The Faculties table in DbVisualizer
The ‘Faculties’ table in DbVisualizer

Now to experience the effect of the cascade action firsthand, delete a faculty and observe the effect on the associated lecturers:

Copy
        
1 DELETE FROM departments 2 WHERE id = 1;
executing the cascading action
Executing the cascading action

Once this statement is executed, the row from the faculties table with the id of 1, will be deleted. It will then subsequently delete all lecturers belonging to the faculty with faculty_id = 1 due to the DELETE CASCADE action defined on the foreign key constraint.

Without the ON DELETE CASCADE option, you would need to manually delete these rows from the table which can be time-consuming and fallible.

Finally, this is how the lecturers table will look like in DbVisualizer after the query has been executed:

The new departments table
The new departments table

Great! We’ve been able to implement and test the ON DELETE CASCADE feature and with the help of DbVisualizer, we’ve observed what goes on within the tables when the feature is implemented. Let’s bore down to studying some of the corner cases in using the ON DELETE CASCADE feature in Postgres.

Does ON DELETE CASCADE Always Help? Corner Cases

Many developers, generally, believe that ON DELETE CASCADE is a useful tool for maintaining database integrity. This is absolutely true, however, there are some corner cases developers should be aware of:

  1. Database Performance: Cascade deletes in Postgres can be slow, especially if there are a lot of rows in the child table or when dealing with large tables. You may want to use a different constraint, such as SET NULL or SET DEFAULT if you happen to have issues with your database performance.
  2. Data Loss: Cascading deletes can be dangerous if not used carefully. For instance, if a row is accidentally deleted from a referenced table, all referencing rows in the referencing table will also be deleted, potentially leading to data loss. This can lead to data loss if you're not careful.

Tips for Using ON DELETE CASCADE Safely and Effectively

Here are some tips for using ON DELETE CASCADE:

  1. Only use it on tables where you're confident that deleting a row will not lead to loss of data. Before implementing ON DELETE CASCADE, test to ensure that it works as expected. This can help identify any unexpected behavior.
  2. Cascading deletes can be resource-intensive, so it's best to use it with smaller tables. Consider using triggers or stored procedures for larger tables with complex relationships as large tables with complex relationships.
  3. Use it in conjunction with other constraints, such as UNIQUE and CHECK, to help prevent inconsistent data. For instance, you can use the UNIQUE constraint to ensure that no two rows in a table have the same value for a particular column. You can also use the CHECK constraint to enforce specific data conditions, such as demanding that a column contains a value between x and y.

Let’s look at an example using the query below:

Copy
        
1 CREATE TABLE students ( 2 id serial PRIMARY KEY, 3 name text NOT NULL, 4 height float NOT NULL CHECK (height BETWEEN 1 AND 2.7), 5 UNIQUE (name, height) 6 );

In the query above, the students table has two constraints: UNIQUE and CHECK. If you try to insert a new row with the same name and height as an existing row, PostgreSQL will not allow you to do so. This is because the UNIQUE constraint prevents duplicate rows.

Similarly, if you try to insert a new row with a height outside of the range of 1 to 2.7, PostgreSQL will not allow you to do so. This is because the CHECK constraint prevents invalid data.

Summary

ON DELETE CASCADE is a powerful feature in Postgres that can make database management easier and ensure referential integrity. Through the use this feature, you can define that a foreign key constraint automatically deletes all referencing rows in child tables when a corresponding row is deleted from the parent table.

ON DELETE CASCADE isn’t everything, to take proper care of your databases, consider using SQL clients like the one built by DbVisualizer.

FAQs

What happens if a foreign key constraint with ON DELETE CASCADE is applied to a table that already contains data?

If a foreign key with ON DELETE CASCADE is applied to an existing table with data, any row in the referencing table that points to a deleted row in the referenced row will also be automatically deleted.

Can ON DELETE CASCADE be used to delete rows from multiple tables at once?

No, ON DELETE CASCADE applies only to the referencing table, and any cascading deletes are limited to that table alone. If you need to delete rows from multiple tables at once, you can use a trigger or a stored procedure to perform the necessary actions.

Is it possible to specify multiple actions to be taken when a row is deleted using ON DELETE CASCADE?

No, it is not possible to specify multiple actions to be taken when a row is deleted using ON DELETE CASCADE. Instead, you can create multiple foreign key constraints with different actions, and apply them to the same referencing table if you need to perform multiple actions.

Dbvis download link img
About the author
Leslie S. Gyamfi.
Leslie S. Gyamfi
Leslie Gyamfi is a mobile/web app developer with a passion for creating innovative solutions. He is dedicated to delivering high-quality products and technical articles. You can connect with him on LinkedIn
The Table Icon
Sign up to receive The Table's roundup
More from the table
Title Author Tags Length Published
title

Digging Deeper into Advanced SQL Window Functions

author Ochuko Onojakpor tags 8 min 2025-01-16
title

OLTP vs OLAP: Comparing the Two Data Processing Systems

author Antonello Zanini tags Database system OLAP OLTP 9 min 2025-01-15
title

Automating SQL Queries with SQL CLI and SQL Job Scheduling

author Bonnie tags AUTOMATION SQL 6 min 2025-01-14
title

A Guide to SQL Server Indexes on Partitioned Tables

author Antonello Zanini tags SQL SERVER 7 min 2025-01-13
title

What Is the Pinecone Vector Database?

author Lukas Vileikis tags Data Visualization Tools DbVisualizer Search 6 min 2025-01-09
title

How to Display All Duplicate Records in a MySQL Table

author Antonello Zanini tags MySQL 6 min 2025-01-08
title

Understanding the SQL UNIQUE Constraint

author Leslie S. Gyamfi tags DbVisualizer SQL 6 min 2025-01-07
title

How to Drop an Index By Partition Number in SQL Server

author Antonello Zanini tags SQL SERVER 7 min 2025-01-06
title

Exploring Cursors and Temporary Tables in SQL

author Ochuko Onojakpor tags Cursors SQL 10 min 2024-12-30
title

The Most Interesting Functions in MySQL – A Guide

author Lukas Vileikis tags MySQL 5 min 2024-12-27

The content provided on dbvis.com/thetable, including but not limited to code and examples, is intended for educational and informational purposes only. We do not make any warranties or representations of any kind. Read more here.