Vault sync: 2021-10-25 17:01:27

This commit is contained in:
Nick Leeman 2021-10-25 17:01:27 +02:00
parent 340f32f97b
commit ec342edb5a
3 changed files with 8 additions and 7 deletions

4
.obsidian/workspace vendored
View File

@ -88,6 +88,7 @@
"active": "bc6e8ad9aa0f44c3", "active": "bc6e8ad9aa0f44c3",
"lastOpenFiles": [ "lastOpenFiles": [
"School/Development/Primary Key.md", "School/Development/Primary Key.md",
"School/Development/Foreign Key.md",
"School/Development/SQL Database.md", "School/Development/SQL Database.md",
"School/Analyse/OSI Model.md", "School/Analyse/OSI Model.md",
"School/Analyse/Images/OSI-model.png", "School/Analyse/Images/OSI-model.png",
@ -95,7 +96,6 @@
"School/Analyse/Computer Networks.md", "School/Analyse/Computer Networks.md",
"School/Analyse/Comminucation Mediums.md", "School/Analyse/Comminucation Mediums.md",
"School/Analyse/Network Types.md", "School/Analyse/Network Types.md",
"School/Analyse/Network Hardware.md", "School/Analyse/Network Hardware.md"
"School/Analyse/Packet.md"
] ]
} }

View File

@ -0,0 +1,4 @@
# Foreign Key
A Foreign key is a [[Constraint]] that protects links between tables.

View File

@ -3,9 +3,6 @@ A Primary key is a [[Constraint]] that uniquely identifies [[SQL Database#Entity
There can only be ONE primary per table and can consist of multiple attributes (columns). 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. There als o
A primary key is **not** required, but highly advised. Even if you don't use it its better to include one in your schema.