Drop all tables in PostgreSQL
When developing an application, developers must understand the different ways they can use to interact with the database. This knowledge will help improve development efficiency because they will know the best way to solve a specific problem.
Delete all tables in the PostgreSQL database
In this tutorial, we will learn different methods that can be used to delete tables in a specific database without deleting the database itself.
We will first create a database in the PostgreSQL database management system, add a few tables, and delete the tables we created using different methods.
Log in to PostgreSQL using the following command.
>psql -U postgres
Create a database and we will use the following queries to save our database tables.
postgres=# create database customer_db;
CREATE DATABASE
To see the databases we \l
created using the command, this command will return a collection of all databases.
postgres=# \l
Output:
List of databases
Name | Owner | Encoding | Collate | Ctype | Access privileges
-------------+----------+----------+--------------------+--------------------+-----------------------
customer_db | postgres | UTF8 | English_Kenya.1252 | English_Kenya.1252 |
postgres | postgres | UTF8 | English_Kenya.1252 | English_Kenya.1252 |
template0 | postgres | UTF8 | English_Kenya.1252 | English_Kenya.1252 | =c/postgres +
| | | | | postgres=CTc/postgres
template1 | postgres | UTF8 | English_Kenya.1252 | English_Kenya.1252 | =c/postgres +
| | | | | postgres=CTc/postgres
(4 rows)
Note that the database we created named customer_db
is shown in the first row of the table above, and we can \c
connect to it using the command.
postgres=# \c customer_db;
Output:
You are now connected to database "customer_db" as user "postgres".
We need to have some database tables in our database before we can delete them; we can customer_db
create three tables in our database using the following queries.
customer_db=# CREATE TABLE customer(id SERIAL NOT NULL UNIQUE,firstName varchar(50),lastName varchar(50),email varchar(50),PRIMARY KEY(id));
customer_db=# CREATE TABLE product(id SERIAL NOT NULL UNIQUE,productName varchar(50),productDescription varchar(50),productPrice integer,PRIMARY KEY(id));
customer_db=# CREATE TABLE cart(id SERIAL NOT NULL UNIQUE,product varchar(50),productPrice integer,productQuantity integer,totalCost integer, PRIMARY KEY(id));
The above query creates three tables. We can use \dt
to verify whether these tables have been created.
customer_db=# \dt
Output:
List of relations
Schema | Name | Type | Owner
--------+----------+-------+----------
public | cart | table | postgres
public | customer | table | postgres
public | product | table | postgres
(3 rows)
Drop all tables in a single schema in PostgreSQL
Note that the command we executed above \dt
returned a list of tables in the database, and that the schema of the table was listed as public
.
We will drop all the tables in this schema, re-create the schema, and restore the default permissions for the schema as shown below.
customer_db=# drop SCHEMA public CASCADE;
Output:
NOTICE: drop cascades to 3 other objects
DETAIL: drop cascades to table customer
drop cascades to table product
drop cascades to table cart
DROP SCHEMA
Deleting the schema will cascade the delete operation to the three tables in our database. Use the following commands to create the schema again and grant all roles to the postgres
and public
schemas as shown below.
customer_db=# CREATE SCHEMA public;
customer_db=# GRANT ALL ON SCHEMA public TO postgres;
customer_db=# GRANT ALL ON SCHEMA public TO public;
Drop all tables by specifying multiple tables in PostgreSQL
As shown below, we can use SQL drop
statement to drop tables by listing all the tables we want to drop using comma separated list.
After this query, \dt
the table does not find any relations proving that all our tables in the database have been deleted successfully.
customer_db=# drop table if exists customer, product, cart;
pg_tables
To drop all tables in PostgreSQL use a SQL query with
Since our tables were dropped in the above example, recreate the three tables again using the provided query to drop all the tables below.
We can write a SQL query to select all the tables we want to delete and perform a cascade operation on them.
customer_db=# SELECT 'DROP TABLE IF EXISTS "' || tablename || '" CASCADE;'
from pg_tables WHERE schemaname = 'public';
Output:
?column?
------------------------------------------
DROP TABLE IF EXISTS "customer" CASCADE;
DROP TABLE IF EXISTS "product" CASCADE;
DROP TABLE IF EXISTS "cart" CASCADE;
(3 rows)
In PostgreSQL, use table_catalog
and table_schema
to drop all tables
We can write the SQL query as in the example above and provide the catalog as our database and the public schema for dropping the table.
customer_db=# select 'DROP TABLE "' || table_schema || '"."' || table_name || '" CASCADE;' from information_schema.tables where table_catalog = 'customer_db' and table_schema = 'public';
Output:
?column?
-----------------------------------------
DROP TABLE "public"."customer" CASCADE;
DROP TABLE "public"."product" CASCADE;
DROP TABLE "public"."cart" CASCADE;
(3 rows)
For reprinting, please send an email to 1244347461@qq.com for approval. After obtaining the author's consent, kindly include the source as a link.
Related Articles
Terminate the PostgreSQL connection
Publish Date:2025/04/11 Views:199 Category:PostgreSQL
-
In this article, we will learn how to terminate a PostgreSQL session. Any open connections are run by background processes or tasks, PSQL which may no longer exist despite exiting the user interface or command line tool. Use ps -ef or grep
Single query to rename and change column type in PostgreSQL
Publish Date:2025/04/11 Views:166 Category:PostgreSQL
-
This article describes how to rename a column and change its type in PostgreSQL using only a single query. Renaming and changing column types in MySQL In MySQL , if you want to change the column type and rename it, you can use a simple stat
Joining columns using Select in PostgreSQL
Publish Date:2025/04/11 Views:176 Category:PostgreSQL
-
MySQL PostgreSQL is an object-relational database system, which means it can support more complex data types than its competitors . Today we will learn how to use SELECT the operator to join the columns of a table. Using operators to || joi
Using CASE in PostgreSQL
Publish Date:2025/04/11 Views:124 Category:PostgreSQL
-
This article shows how to use the statement in PostgreSQL CASE . CASE How to use the statement in PostgreSQL case Statements are similar to those in general-purpose programming languages if-else . But in SQL, if you want to write IF-ELSE ,
Using NOT IN with subqueries in PostgreSQL
Publish Date:2025/04/11 Views:93 Category:PostgreSQL
-
NOT IN The inverts the result of NOT simply using IN the operator. NOT IN The right side of the operator must have a subquery in which multiple columns are returned to check whether the expression matches the data. NOT IN Tends to return tr
Using variables in PostgreSQL
Publish Date:2025/04/11 Views:171 Category:PostgreSQL
-
This article will demonstrate how we can declare and assign values to variables in PostgreSQL. In PostgreSQL, DECLARE variables are declared using Often you will need variables in your PL/SQL scripts. In DECLARE the section called , y
Connect to PostgreSQL using a password
Publish Date:2025/04/11 Views:171 Category:PostgreSQL
-
This article shows various ways to connect to PostgreSQL using a password. It can be through the command line, pgpass a file, PGPASSWORD an environment variable or a connection string. Connecting to PostgreSQL with a password using the comm
Deleting a database in PostgreSQL via PSQL
Publish Date:2025/04/11 Views:166 Category:PostgreSQL
-
There are two ways to access PostgreSQL objects and databases on your system. One is through an interface, such as a graphical interface like PGADMIN, and the other is the basic command line tool psql. Today, we will look at DROP DATABASE t
Using the database in PostgreSQL
Publish Date:2025/04/11 Views:132 Category:PostgreSQL
-
This article demonstrates connecting to a database, creating a new database, and creating a table in PostgreSQL. Available databases in PostgreSQL You can run the following command after opening the Postgres command line to view all availab