what is primary key,unique key, foreign key? can u teach me
in simple language?
Answer Posted / pappu
The primary key of a relational table uniquely identifies
each record in the table. It can either be a normal
attribute that is guaranteed to be unique (such as Social
Security Number in a table with no more than one record per
person) or it can be generated by the DBMS (such as a
globally unique identifier, or GUID, in Microsoft SQL
Server). Primary keys may consist of a single attribute or
multiple attributes in combination
a unique key can uniquely identify each row in a table,
and is closely related to the Superkey concept. A unique
key comprises a single column or a set of columns. No two
distinct rows in a table can have the same value (or
combination of values) in those columns if NULL values are
not used. Depending on its design, a table may have
arbitrarily many unique keys but at most one primary key.
Unique keys do not enforce the NOT NULL constraint in
practice. Because NULL is not an actual value (it
represents the lack of a value), when two rows are
compared, and both rows have NULL in a column, the column
values are not considered to be equal. Thus, in order for a
unique key to uniquely identify each row in a table, NULL
values must not be used, however a column defined as unique
key column allows only one null value, which in turn can
uniquely identify that row/tuple.
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.
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
What is database schema name?
sparse lookup and where its options we find in OCI and db2?
Explain the record term used in database.
What is odm database?
Given a table of Player which contains Sno and player name, write a query which finds all possible Table Tennis doubles pairings.
What are database connection details?
where can i free download sqlserver2008..i can install sqlserver2008 without visual studio 2008 and work on it
What is sharded database?
What is a reference table in database?
I have single column in a file. Input 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15 my output is file 1 have 1,2,3,10,11,12 file 2 have 4,5,6,13,14,15 and file 3 have 7,8,9 how is it possible in datastage
Explain partial key?
WHAT IS CARDINALITIES OF JOIN?
Re: Where can i get informatica certification Exam dumps and details? please forward it to emailid:
Why do we need distributed database?
How heap is implemented in database?