What is primary and foreign keys?
(don't copy)
Answers
Answered by
1
Answer:
Primary key uniquely identify a record in the table. Foreign key is a field in the table that is primary key in another table. Primary Key can't accept null values. Foreign key can accept multiple null value.
Answered by
1
Primary Key Foreign Key
Primary key uniquely identify a record in the table. Foreign key is a field in the table that is primary key in another table.
Primary Key can't accept null values. Foreign key can accept multiple null value.
By default, Primary key is clustered index and data in the database table is physically organized in the sequence of clustered index. Foreign key do not automatically create an index, clustered or non-clustered. You can manually create an index on foreign key.
Similar questions