what are the advantages of primary key over unique+notnull

Answers were Sorted based on User's Feedback



what are the advantages of primary key over unique+notnull..

Answer / tulsi

Primary key will avoid duplicate and null values in a table
which the combination of unique+not null will do.But the
advantage is,if a table has primary key we can create
relation to child tables.

Is This Answer Correct ?    28 Yes 13 No

what are the advantages of primary key over unique+notnull..

Answer / shilpa.oracle

Primary key accepts only unique values and does not allow
null values.

Unique key accepts unique values and allows null values.

not null constraint allows duplicate values and doesnt allow
null values.

When a primary key constraint or unique key constraint is
created by default index is created on the columns with
these constraints.

Is This Answer Correct ?    16 Yes 4 No

what are the advantages of primary key over unique+notnull..

Answer / smita

A Foriegn key can refer to the primary key.
A Foriegn key can refer to the unique key also .

Is This Answer Correct ?    14 Yes 6 No

what are the advantages of primary key over unique+notnull..

Answer / soubhagya

When we create a primary key automatically a cluster index
is created on those columns involved in primary key.But
this index not created in unique+not null key, it only
restrict the duplicate values.

Is This Answer Correct ?    4 Yes 3 No

what are the advantages of primary key over unique+notnull..

Answer / kamal

we are able to create a primary key for combination of more
than 1 column. which is not possible in Unique,we should
create unique key for each and every column in the table
individually.

ex . we can create a primary key for (Name,DOB,address)- ie
combination of these three columns be unique.

Is This Answer Correct ?    3 Yes 5 No

what are the advantages of primary key over unique+notnull..

Answer / charumathi

Unique-Duplicates not allowed
Nulls allowed
Not null-NUlls not allowed
Primary key-No Duplicates
No Nulls
A Foriegn key can refer to the primary key.

Is This Answer Correct ?    4 Yes 7 No

what are the advantages of primary key over unique+notnull..

Answer / nitesh

PRIMARY KEY CREATED WITH INDEXES WHICH IS NOT HAPPEN WITH
UNIQUE AND NOT NULL

Is This Answer Correct ?    8 Yes 21 No

Post New Answer

More SQL PLSQL Interview Questions

Can you inner join the same table?

0 Answers  


Does a user_objects view have an entry for a trigger?

0 Answers  


what is a foreign key ? : Sql dba

0 Answers  


What is application trigger?

0 Answers  


what is the need of the cursor attribute notfound..(because using found attribute we can complete the task......found + negation operator = not found )

2 Answers   Tech Mahindra,






How do you assign Construct the where clause without concatenating Field,value pairs?

1 Answers   Microsoft,


Is it possible to use Transaction control Statements such a ROLLBACK or COMMIT in Database Trigger ? Why ?

5 Answers  


What is denormalization in a database?

0 Answers  


PL/SQL allocates memory for the variable's at runtime or at compile time

3 Answers  


When can we use the where clause and the having clause?

0 Answers  


What is java sql package?

0 Answers  


what are different types of keys in sql?

0 Answers  


Categories