What is a PRIMARY KEY

妖精的绣舞 提交于 2021-02-04 19:17:05

问题


In database code I see references to a PRIMARY KEY. What is a PRIMARY KEY, and what difference does it make if some of the columns in one of my tables form a PRIMARY KEY... or don't form a PRIMARY KEY.

(Amazingly, this question does not seem to have been asked before on SO)


回答1:


1st Normal Form requires that you have a unique key for you to have a relation. If this requirement is not met (i.e. if you have no unique keys), then your table will be just a heap, not a relation.

The primary key is more or less (i.e. roughly speaking) one specially selected unique key. The one who designs the schema chooses it. The main difference between a PK and a unique key is that unique keys can contain NULL values while PKs cannot. Also, you can have more than one unique keys in a given table but at most one PK.

By making one of the unique keys a primary key, you allow other tables to easily point to this table via their foreign keys (FKs). Technically the FKs (of the child tables) can also point to any unique key (from the parent table) but usually people use for that purpose the primary key (PK) which (as said) is basically just one of the unique keys. That means FKs usually point to PKs.

For more details, see also:

What is the difference b/w Primary Key and Unique Key




回答2:


A primary key is a key in a relational database that is unique for each record.

If a reference to a column in a database is primary key, then that value will be unique. when you try to add another row to the value with the same primary key, it throws an error.

If you dont have a primary key on a column, you can add any non-unique values as well.




回答3:


Structurally speaking, a primary key is a column/group of columns that has a unique index and can't be null. And each table can have at most one primary key (although a primary key can have more than one field).

Semantically speaking, a PK uniquely identifies a row in a table. Due to its constrains, you can be 100% sure that there are no two records having the same PK value. This allows optimisations on both the SQL server and the SQL client side




回答4:


Primary key (abbreviated PK) is an index of a table with not null constraint. The main conclusion of having a not null index on a table is to have a unique identifier of each table row. Primary key can be built on a single column or multiple different columns of the same table as well as a regular index. Developers usually choose a unique identifier (e.g. ‘id’) to be a primary key, even though there is no strict definition what must be the primary key.

In relational databases primary keys are used belong concept of atomicity in 1st normal form (1NF) to refer a table row from any other table, that means you have the same data/row just once in the database and use its primary key to make a reference.

The last important think about primary keys is better performance. Indexes generally help with performance issues in meny cases. However in the case of primary key, you can expect that you often access table rows using the primary key as the access condition or where clause (e.g. SELECT * FROM mytable WHERE id = 3). You can expect that your DBMS organizes data on a storage to be fast accessible using the primary key. Without having a primary key on the table you can expect some performence issues.

Further reading on Primary Keys:

  • http://en.wikipedia.org/wiki/Database_index
  • http://use-the-index-luke.com/sql/where-clause/the-equals-operator/concatenated-keys
  • http://use-the-index-luke.com/sql/where-clause/the-equals-operator/primary-keys
  • http://en.wikipedia.org/wiki/First_normal_form


来源:https://stackoverflow.com/questions/29708849/what-is-a-primary-key

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!