Introduction to PostgreSQL drop foreign key
The following article provides an outline for PostgreSQL drop foreign key. PostgreSQL provides different types of keys to the user; basically, a foreign key is the one of the types of key in the PostgreSQL database. The foreign key is used to reference the table or column with the help of the primary key, and drop foreign key means we drop the foreign key from the table or columns. When we use a drop cascade in a statement, it means it will automatically delete all referenced rows from the table as this type of foreign key we called a dependent foreign key. Another way to drop foreign keys is to delete foreign keys, which does not depend on any other column or table.
Syntax:
Alter table table_name drop constraint key name;
Explanation:
- In the above syntax, we use the alter table statement to drop foreign key constraint where table_name means specified table name from database and drop is used to delete the foreign key constraint from a database table. Also, the key name means actual foreign key name from the table we won’t drop.
How to drop foreign key in PostgreSQL?
- We must install PostgreSQL in our system.
- We require basic knowledge about PostgreSQL and key constraints of the database table.
- We must require a database table to perform foreign key constraints.
- We just need basic knowledge about the foreign key that means how it is used.
- We can perform different operations on tables with the help of psql and pgAdmin.
Let’s see how we can implement foreign key constraints, and we will also see how to drop foreign key from database tables.
First, we need a foreign key to perform a drop foreign key constraint so let’s see how to create a foreign key as follows.
Example #1
Code:
CREATE TABLE sample(
emp_id INT GENERATED ALWAYS AS IDENTITY,
emp_name VARCHAR(255) NOT NULL,
PRIMARY KEY(emp_id)
);
Explanation:
- In the above example, we use a create table to create a sample table with two attributes such as emp_id and emp_name, and here we assign the primary key to emp_id as shown in the statement.
- Illustrate the end result of the above declaration by using the following snapshot.
Output:
Now we insert a record into the sample table by using the following statement as follows.
Code:
INSERT INTO sample(emp_name)
VALUES('John'),
('Samm');
Explanation:
- With the help of the above statement, we insert two records into a sample table.
- Illustrate the end result of the above declaration by using the following snapshot.
Output:
Now we create another table by using the following statement as follows.
Code:
CREATE TABLE details (
cust_id INT GENERATED ALWAYS AS IDENTITY,
emp_id INT,
cust_name VARCHAR(255) NOT NULL,
cust_phone VARCHAR(15),
cust_email VARCHAR(100),
PRIMARY KEY(cust_id),
CONSTRAINT fk_sample
FOREIGN KEY(emp_id)
REFERENCES sample(emp_id)
ON DELETE CASCADE
);
Explanation:
- With the help of the above statement, we created details tables with different attributes such as cust_id, cust_name, cust_phone, cust_email and here, we created a foreign key name as emp_id with reference to the sample table.
- Illustrate the end result of the above declaration by using the following snapshot.
Output:
Now we insert records into the details table by using the following statement as follows.
Code:
insert into details(emp_id, cust_name, cust_phone, cust_email)
values(1,'John','(202)-555-4321','john.123@gmail.com'),
(1,'John','(202)-555-4321','john.123@gmail.com'),
(2,'Sam','(101)-444-6541','sam.123@gmail.com');
select * from details;
Explanation:
- With the help of the above insert statement, we insert records into the details table. See here we insert the same records into the table but as shown in the statement.
- Illustrate the end result of the above declaration by using the following snapshot.
Output:
See in the above example we insert two same records into the table but violate the foreign key constraint. So we delete the first record by using the following statement as follows.
Code:
delete from details
where cust_id = 1;
In the above both examples, we created two tables such as sample and details for implementation of foreign key constraint.
So now, let’s see how we can drop the foreign key constraint by using the following statement as follows.
Example #2
Code:
alter table details drop constraint fk_sample;
Explanation:
- In the above example, we use an alter table statement to drop foreign key constraints from the database table. In this example, table name details and foreign key name is fk_sample that we need to drop from the database table.
- Illustrate the end result of the above declaration by using the following snapshot.
Output:
Another way to delete foreign keys is that you can drop tables if they exist.
Syntax:
Drop table if exists table name;
Explanation:
- In the above syntax, we drop table statements to drop the foreign key constraint where if exists means if a specified table is present in a database and table name means specified table name from the database.
- See here when we use the above syntax, it deletes tables from databases, not particular foreign key columns, but when we use alter table statements in which we can delete specific foreign key constraints.
Let see a different example of a drop table as follows.
Example #3
Code:
drop table if exists sample;
Explanation:
- In the above example, we use drop table statements to drop foreign key constraints in which that sample is the specified table name from the database that we need to drop. In this example, the sample table does not contain any foreign key; we just show how to drop the foreign key constraints by using a drop table statement.
- Drop table statement deletes the whole table from the database, which means it directly deletes the table.
- Illustrate the end result of the above declaration by using the following snapshot.
Output:
Similarly, we will drop our second table by using a drop table statement, and that table contains foreign key constraint as follows.
Example #4
Code:
drop table if exists details;
Explanation:
- In the above example, we use a drop table if it exists. In this example, we try to drop a details table that contains foreign key constraints, and it gives the reference to the sample table.
- Illustrate the end result of the above declaration by using the following snapshot.
Output:
Conclusion
From the above article, we have seen the basic syntax drop foreign key constraint. We have also seen how we can implement them in PostgreSQL with different examples of each operation. From this article, we have seen how we can handle drop foreign key constraints in PostgreSQL.
Recommended Articles
This is a guide to PostgreSQL drop foreign key. Here we discuss the introduction and how to drop foreign key in PostgreSQL? You may also have a look at the following articles to learn more –