PostgreSQL DELETE
DELETE Command
This document discusses how to delete data of a table using PostgreSQL DELETE command.
Usage
Following is the usage of PostgreSQL DELETE command to delete data of a PostgreSQL table.
DELETE FROM table_name ;
Where table_name is the associated table. Executing this command will delete all the rows of the associated table.
DELETE FROM table_name WHERE condition;
If you don't want to delete all of the rows of a table, but some specific rows which match the "condition", execute the above.
DELETE all rows of table
Structure of the table
Following is the structure of the table whose data will be deleted.
Data Before deletion
Command to delete data
Code:
DELETE FROM book;
This command will delete all of the rows of the book table.
DELETE specific rows of a table
Code:
DELETE FROM book WHERE price < 25.00
This command will delete all the rows, which stores information about a book, whose price is less than 25.00.
Previous: Update Data
Next: CONSTRAINT
It will be nice if you may share this link in any developer community or anywhere else, from where other developers may find this content. Thanks.
https://w3resource.com/PostgreSQL/PostgreSQL-delete.php
- Weekly Trends and Language Statistics
- Weekly Trends and Language Statistics