Saturday, May 1, 2010

Primary Key

0 comments
The Primary key wihtin the Relational Database is that attribute or combination of attributes which is set and defined with the purpose to uniquely identifies a row or record in a relation.
Example
CREATE TABLE Employee
(ID integer PRIMARY KEY,
Emp_Name varchar(30),
Emp_Address varchar(30));

0 comments: