postgresql – Postgres否主键缺点[已关闭]

前端之家收集整理的这篇文章主要介绍了postgresql – Postgres否主键缺点[已关闭]前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
在Postgres中没有表的主键有什么缺点吗?由于所有数据在堆中无序存储,所以主键只是一个强制执行唯一键和索引的方法.或者主表中提供了一个基本功能,而不是没有主键的表?
根据Postgres文档(http://www. postgresql.org/docs/9.2/static/sql-createtable.html):

Technically,PRIMARY KEY is merely a combination of UNIQUE and NOT
NULL,but identifying a set of columns as primary key also provides
Metadata about the design of the schema,as a primary key implies that
other tables can rely on this set of columns as a unique identifier
for rows.

从经验来看,我没有创造出许多表.没有主键的最大的缺点之一是,您可以通过外键没有参照完整性检查 – 因为该关系需要一个.我认为一些复制解决方案还需要一个主键,或者每行的单列标识符.

原文链接:https://www.f2er.com/postgresql/191817.html

猜你在找的Postgre SQL相关文章