Is there any drawback to not having a primary key for a table in Postgres? Since all data is stored unordered in the heap anyway, is the primary key just a way to enforce a unique key and an index at the same time? Or is there a fundamental feature that a primary key provides in a table as opposed to a table that does not have a primary key?
closed as off topic by martin clayton, Sean Owen, Bali C, Toon Krijthe, sdcvvc Oct 2 '12 at 10:25
Questions on Stack Overflow are expected to relate to programming or software development within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.
|
Per the Postgres documentation (http://www.postgresql.org/docs/9.2/static/sql-createtable.html):
From experience, I have created plenty of tables without them. One of the biggest drawbacks to not having a Primary Key is that you can have no referential integrity checks via foreign key - since that relation requires one. I think some replication solutions also require there be a primary key, or at the single column identifier per row. |
|||||||||||
|
PRIMARY KEYannotated in the DDL to save the overhead of an index in exchange for the lack of enforcement. I wouldn't do it but I can imagine situations in which it might apply. – Craig Ringer Oct 1 '12 at 23:18