5 pts.
 What does it mean by related data in a database?
What does it mean by related data in a database?

Software/Hardware used:
ASKED: September 9, 2009  5:22 AM
UPDATED: September 9, 2009  2:58 PM

Answer Wiki:
Relational data is the key to a database. It basically means that the data in one table relates to the data in another table. In an HR database you've got two tables, Employee and Department. <pre>CREATE TABLE Department (DepartmentId INT, DepartmentName varchar(50)) CREATE TABLE Employee (EmployeeId INT, FirstName varchar(50), LastName varchar(50), DepartmentId INT)</pre> These tables are related to each other through the DepartmentId column in each table. The first table is the MASTER and the second is the DETAIL table, it is important that the Department column to be unique (primary key) in the master table, for to have a clear one to many (or 0) relation between the records from the two tables.
Last Wiki Answer Submitted:  September 9, 2009  2:46 pm  by  Denny Cherry   64,505 pts.
All Answer Wiki Contributors:  Denny Cherry   64,505 pts.
To see all answers submitted to the Answer Wiki: View Answer History.


Discuss This Question:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _


 

But do not forget that the term RELATIONAL (as in RDBMS) has nothing to do with the way data is related to other data.

Steve
————-

 5,205 pts.