- Elias
Topic Author- Offline
- Administrator

Less More- Posts: 4306
- Thank you received: 0
5 months 3 weeks ago#3302by Elias How does a foreign key help?
- Elias
Topic Author- Offline
- Administrator

Less More- Posts: 4306
- Thank you received: 0
5 months 3 weeks ago - 5 months 3 weeks ago#3303by Elias The FOREIGN KEY constraint is used to prevent actions that would destroy links between tables. A FOREIGN KEY is a field (or collection of fields) in one table, that refers to the PRIMARY KEY in another table (google).
If you have the header Orders Table, then at the Detail Orders Table must exist the Primary Key of an order as foreign key in order to be a relation for the two tables. So we know what are the products of this order, the detal table includes one record per product ( if this producy has 3 products we may have quantity 3, but one row).We can not delete the Header order if there are record(s) in the Detail Order, and we know this from Foreign Key ( of course we may use DELETE CASCADE).I hope to help
Last edit: 5 months 3 weeks ago by Elias.
- Q&A
- Index
- Database
- How does a foreign key help?
Time to create page: 0.100 seconds