English Deutsch Français Italiano Español Português 繁體中文 Bahasa Indonesia Tiếng Việt ภาษาไทย
All categories

If possible please provide a simple example

2006-09-07 04:22:18 · 4 answers · asked by indianincredible 1 in Computers & Internet Programming & Design

4 answers

Foreign keys provide a relationship between two tables of data. For example: pets & their owners.

Without a key:

Table Owners:
owner_id
owner_name

Table Pets:
pet_id
pet_name

There is no way to tell which pet belongs to which owner. Adding a foreign key to the pets table:

Pets table:
pet_id
pet_name
owner_id

Allows you to see all the information on the owner of the pet by assigning each pet to a specific owner. You can then see all the information with a query like:

SELECT * FROM owners AS o JOIN pets AS p ON o.owner_id = p.owner_id

You can effectively think of it as putting each person's driver's license # on their pet's collar. The # itself doesn't tell you anything about the owner, but you can use the # to get the information you need.

2006-09-07 04:32:32 · answer #1 · answered by wfinn 2 · 0 0

Use Of Foreign Key

2016-12-18 07:27:24 · answer #2 · answered by mink 4 · 0 0

To enforce foreign constraint, you do know what "foreign" relationship is in DB, yes?

Can't recall the SQL right off my head, just it is declared similarly as primary key is defined.

But other than enforcing the existence of a relationship it does nothing extra; no cardinality, no nullibility, not anything. Also the dictation of it in SQL is also optional.

2006-09-07 04:33:02 · answer #3 · answered by Andy T 7 · 0 0

A foreign key (fk) is used to link tables to control the duplication of data.

Example: Table - employees
Rows - employeeid, firstname, lastname, addressline1, addressline2, city, state, zip, JOBID (fk), PAYGRADEID (fk)

Table - jobs
Rows - JOBID, title, departmentid, supervisorid, subordinateid

Table - pay
Rows - PAYGRADEID, startingsalary, highestsalary

notice how the fk's in the employees table link to other tables. also, note how the table JOBS has 3 fk's linking it to other tables.
Fk's are also linked to normalizing a database.
It's good to have a certain level of non-redundance of data in a database, but too much or over normalization, can be a problem too.

2006-09-07 04:39:18 · answer #4 · answered by timc_fla 5 · 0 0

fedest.com, questions and answers