Answer Posted / iain hambleton
Expanding on the two previous explanations, imagine any
parent/child relationship, for example a manufacturer and
product relationship that a retailer would have in it's
inventory system. Obviously any product must have been
manufactured by someone (i.e. a product cannot exist
without a manufacturer). Imagine then if in the inventory
system above, some muppet deleted records from the
manufacturer table. This would lead to products existing
in the system without a corresponding manufacturer record -
this is logically inconsistent data (as it does not fit
with the real world situation that the data is trying to
model).
If a foreign key constraint were to have been placed
between the two tables, then the muppet from above would
either have been unable to delete the manufacturer records
without first visiting the products table and deleting all
products that particular manufactures made or when the
manufacturers were deleted, all products linked to them
would have been automatically deleted also (this latter
situation is called a cascade delete – powerful and
dangerous stuff).
Either way, the remaining data would have been left
consistent with the real world manufacturer/product
relationship (though of course large swathes of data may
still have been deleted).
| Is This Answer Correct ? | 6 Yes | 0 No |
Post New Answer View All Answers
What is sql procedures and functions?
What are the advantages of sql?
What is t-sql? : Transact sql
What are the datatypes available in pl/sql ?
Why does sql need a server?
What are different methods to trace the pl/sql code?
What has stored procedures in sql and how we can use it?
How do I count rows in sql query?
What is the difference between rename and alias?
What is parameter substitution in sql?
how to use 'mysql' to run sql statements? : Sql dba
Explain spool.
how to get a list of indexes of an existing table? : Sql dba
How to Execute a Package in PL/SQL.?
what is datawarehouse? : Sql dba