InterviewSolution
Saved Bookmarks
| 1. |
Explain Foreign key in SQL? |
|
Answer» It is a collection of fields in one table that uniquely identifies a ROW of another table. In SIMPLE words, the foreign KEY is defined in a second table, but it refers to the primary key/unique key in the first table. |
|