what is foreign key…
 
Notifications
Clear all

what is foreign key?

2 Posts
3 Users
1 Likes
346 Views
0
Topic starter

explain

Topic Tags
2 Answers
1

0

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.

The table with the foreign key is called the child table, and the table with the primary key is called the referenced or parent table.

Share: