what is for foreign key ??

Answers were Sorted based on User's Feedback



what is for foreign key ??..

Answer / akhtar mohammad kalim

A foreign key is a field (or fields) that points to the
primary key of another table. The purpose of the foreign
key is to ensure referential integrity of the data. In
other words, only values that are supposed to appear in the
database are permitted.

For example, say we have two tables, a CUSTOMER table that
includes all customer data, and an ORDERS table that
includes all customer orders. The constraint here is that
all orders must be associated with a customer that is
already in the CUSTOMER table. In this case, we will place
a foreign key on the ORDERS table and have it relate to the
primary key of the CUSTOMER table. This way, we can ensure
that all orders in the ORDERS table are related to a
customer in the CUSTOMER table. In other words, the ORDERS
table cannot contain information on a customer that is not
in the CUSTOMER table.

The structure of these two tables will be as follows:

Table CUSTOMER column name characteristic
SID Primary Key
Last_Name
First_Name


Table ORDERS column name characteristic
Order_ID Primary Key
Order_Date
Customer_SID Foreign Key
Amount


In the above example, the Customer_SID column in the ORDERS
table is a foreign key pointing to the SID column in the
CUSTOMER table.

Is This Answer Correct ?    9 Yes 1 No

what is for foreign key ??..

Answer / amit kumar

Follow this lick to get answer....

http://msdn.microsoft.com/en-us/library/aa933117.aspx
http://www.1keydata.com/sql/sql-foreign-key.html

thx

Is This Answer Correct ?    3 Yes 0 No

what is for foreign key ??..

Answer / vimal

It is Reference to another table

Is This Answer Correct ?    1 Yes 0 No

what is for foreign key ??..

Answer / a.ganesh

it's reduce the repeated data in the database
.I think this is main advantage and the recode can't
directly delete from Parent Table

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More SQL Server Interview Questions

How self join is different from outer join?

0 Answers   Blue Star,


What are types of storage modes? : sql server analysis services, ssas

0 Answers  


What are sql servers used for?

0 Answers  


What is a table called, if it does not have neither Cluster nor Non-cluster Index?

2 Answers  


Explain system rowset functions?

0 Answers  






where do you use Isolations?give me some exmpale?

1 Answers  


Explain different types of BACKUPs avaialabe in SQL Server? Given a particular scenario, how would you go about choosing a backup plan?

0 Answers  


Can the “if update (colname)” statement be used in a delete trigger?

0 Answers  


New concepts of sql server 2005 use in your project.

0 Answers   TCS,


diffrence between Cluster Index and non Cluster Index

3 Answers   Wipro,


what is the purpose of creating view is sql server 2000

13 Answers   Wipro,


Do you know what is normalization of database? What are its benefits?

0 Answers  


Categories