mirror of
https://github.com/robindhole/fundamentals.git
synced 2025-03-15 15:09:54 +00:00
Update 01-database-fundamentals.md (#16)
Fixes typo in 01-database-fundamentals.md.
This commit is contained in:
parent
9e80415e9d
commit
647afb6d17
@ -310,7 +310,7 @@ For example `{id, name, email, phone}` is a super key but is it a candidate key?
|
|||||||
|
|
||||||
A set of candidate keys for our student relation
|
A set of candidate keys for our student relation
|
||||||
* id
|
* id
|
||||||
* name
|
* phone
|
||||||
* email
|
* email
|
||||||
|
|
||||||
#### Primary Keys
|
#### Primary Keys
|
||||||
@ -383,4 +383,4 @@ CREATE TABLE `batches` (
|
|||||||
KEY `mentor_id` (`mentor_id`),
|
KEY `mentor_id` (`mentor_id`),
|
||||||
CONSTRAINT `batches_ibfk_1` FOREIGN KEY (`mentor_id`) REFERENCES `mentors` (`id`)
|
CONSTRAINT `batches_ibfk_1` FOREIGN KEY (`mentor_id`) REFERENCES `mentors` (`id`)
|
||||||
);
|
);
|
||||||
```
|
```
|
||||||
|
Loading…
x
Reference in New Issue
Block a user