What's the difference between a primary key and a unique
key?

Answers were Sorted based on User's Feedback



What's the difference between a primary key and a unique key?..

Answer / swapna

Both primary key and unique enforce uniqueness of the
column on which they are defined. But by default primary
key creates a clustered index on the column, where are
unique creates a nonclustered index by default. Another
major difference is that, primary key doesn't allow NULLs,
but unique key allows one NULL only.

Is This Answer Correct ?    16 Yes 0 No

What's the difference between a primary key and a unique key?..

Answer / ramneet

There is one more diff b/w primary key and unique key that
there is only one primary key in a table but there are more
then one unique keys in a table.

Is This Answer Correct ?    11 Yes 2 No

What's the difference between a primary key and a unique key?..

Answer / gowthami radhakrishnana

1)primary key uses clustered index
unique key uses non-clustered index

2)primary key doesn't allow null values
but unique allows one null value

3)there is only one primary key but more than one unique
keys

Is This Answer Correct ?    5 Yes 1 No

What's the difference between a primary key and a unique key?..

Answer / ramneet

Primary can be used in foregin key but unique key does not
used.

Is This Answer Correct ?    4 Yes 2 No

Post New Answer

More SQL Server Interview Questions

What are the different types of collation sensitivity in sql server?

0 Answers  


what is mean by crystal repoart? ahere we will mainly use that?

1 Answers  


How to filter out duplications in the returning rows in ms sql server?

0 Answers  


What is lock escalation? : sql server database administration

0 Answers  


Explain ms sql server reporting services vs crystal reports?

0 Answers  






What is primary key index?

0 Answers  


When would you use a before or after trigger?

0 Answers  


Does server sql treat char as a variable-length or fixed-length column?

0 Answers  


What's new in sql management studio for sql server? : sql server management studio

0 Answers  


Can an automatic recovery be initiated by a user?

0 Answers  


Does hive support indexing?

0 Answers  


how to do partition in sqlserver

0 Answers   TCS,


Categories