Open In App

PostgreSQL – DELETE

To delete data from a table PostgreSQL has a DELETE statement.

Syntax: 
DELETE FROM table
WHERE condition;

The below rules need to be followed while using the DELETE statement:



Let’s set up a sample database and table for the demonstration of DELETE statement.

Article Tags :