console.jay()

Home

❯

postgresql

❯

PostgreSQL Delete

PostgreSQL Delete

Mar 30, 20251 min read

  • postgres

To delete all records in your table:

DELETE FROM person;

To delete one or more records using conditions:

DELETE FROM person WHERE id = 1; 

References

  • Learn PostgreSQL Tutorial - Full Course for Beginners (youtube.com)

Graph View

Backlinks

  • PostgreSQL MOC

Created with Quartz v4.5.0 © 2025

  • GitHub