Vault sync: 2021-10-25 16:56:27

This commit is contained in:
Nick Leeman 2021-10-25 16:56:27 +02:00
parent 722aab391d
commit 340f32f97b

View File

@ -1,2 +1,11 @@
# Primary Key
A Primary key is a [[Constraint]]
A Primary key is a [[Constraint]] that uniquely identifies [[SQL Database#Entity]] in a entity set (table).
There can only be ONE primary per table and can consist of multiple attributes (columns).
A primary key is **not** required, but highly advised. Even if you don't use it its better to include one in your scheme.