select open change scope Open full search

PG.CENTER connects PostgreSQL documentation, reference, and ecosystem knowledge. Maintained by Pigsty.

Unsupported versions: 7.1
Historical version. PostgreSQL 7.1 reached end of support in April 2006. See the current manual for supported releases.

4.9. Deletions

Deletions are performed using the DELETE command:

DELETE FROM weather WHERE city = 'Hayward';
All weather recording belonging to Hayward are removed. One should be wary of queries of the form
DELETE FROM tablename;
Without a qualification, DELETE will simply remove all rows from the given table, leaving it empty. The system will not request confirmation before doing this.

Report a documentation issue

Read the upstream documentation. For corrections, first check the current manual.