Foreign key is in child table. true or false?
Answers
Answered by
3
Answer:
A foreign key is a way to enforce referential integrity within your SQL Server database. ... The referenced table is called the parent table while the table with the foreign key is called the child table. The foreign key in the child table will generally reference a primary key in the parent table.
Answered by
1
Answer:
The table that contains the foreign key is considered the child table, and the table that the foreign key references is the parent table. The foreign key restricts what data can be stored in the foreign key columns in the child table, based on the data in the referenced columns in the parent table.
Explanation:
therefore, the statement given above is true.
Similar questions