what is the difference between primary key and foreign key?
Answers were Sorted based on User's Feedback
Answer / gaytriom
A primary key is a column which uniquely identifies the
records in a table. In a broad sense, a primary key is the
mixture of a unique key and an index: A collumn with a primary
key is indexed to deliver a faster query, and doesn't allow
duplicate values to ensure specific data.
A foreign key is a column (the child collumn) in a table which
has a corresponding relationship and a dependency on another
collumn (the parent collumn) that is usually in a different
table. Parent collumns can have multiple child collumns, but a
child collumn can only have one parent collumn.
Is This Answer Correct ? | 11 Yes | 1 No |
Answer / vimal chauhan
Primary key does't allow null value
while foreign key allow null value
Is This Answer Correct ? | 11 Yes | 1 No |
What is the use of the tag in the web.config file?
what is CTS?
Define cookie.
What is the postback property in asp.net?
Explain about Multi-Language integration?
How do active server pages work?
Explain what is viewstate?
Define asp.net caching?
What is a ashx file?
Where can I get information on cookies in asp.net?
Types of caching ?
How to refresh a page in asp.net