What is the difference between primary key & unique index ?

Answers were Sorted based on User's Feedback



What is the difference between primary key & unique index ?..

Answer / shankar

Primary Key cannot have NULL values in it wherein an
UNIQUE index can have one NULL value in it.

Is This Answer Correct ?    37 Yes 3 No

What is the difference between primary key & unique index ?..

Answer / mani

Primary key can be defined only one for a table whereas
number of unique indexes can be defined for a table.

primary key can not have null values but unique can have
null values and to remind one null value can never be equal
to another null value.

Is This Answer Correct ?    23 Yes 4 No

What is the difference between primary key & unique index ?..

Answer / uddipto banerji

1. Primary Key is a column or a set of columns that uniquely identifies a row.Its purpose RECORD UNIQUENESS
2. Primary Key will not allow duplicate values.
3. Primary Key will not allow null.
4. Primary Key is not compulsory but recommended.
5. Primary Key helps to identify one record from another.
6. Only One Primary Key is allowed per table.
7. Unique Indexes is created automatically if there is Primary Key.
8. One table can combine upto 16 columns in a Composite Primary Key.
9. A table can have more than one Unique Key which is not possible in a Primary Key.

Is This Answer Correct ?    10 Yes 2 No

What is the difference between primary key & unique index ?..

Answer / palash ghosh

1)Primary key creates an implicit culstered index on a
table, unique key does not create any implicit index.
2)Columns defined as primary key does not allow null values,
where as columns defined as unique can allow null values.
3)A table can have just one primary key (can be a composite
key) where as there can be multiple unique columns (keys).
4)Primary key is a unique key with the above mentioned
features.

Is This Answer Correct ?    9 Yes 1 No

What is the difference between primary key & unique index ?..

Answer / mehdee

- Each primary key must associate with a unique index, but
unique index dose not have to associate to the primary key.

Is This Answer Correct ?    6 Yes 3 No

What is the difference between primary key & unique index ?..

Answer / s

Primary Key uniquely identifies the record and the UNIQUE
index on the primary key ensures that no duplicates values
will be stored in the table.

Is This Answer Correct ?    16 Yes 14 No

Post New Answer

More DB2 Interview Questions

What is a SELECT statement?

1 Answers  


What information is used as input to the bind process?

2 Answers  


How do I start db2 in windows?

0 Answers  


what is differnece between DROP TABLE & DELETE TABLE .

4 Answers   Cap Gemini,


What are the various locking levels available?

3 Answers  






List down the data types in the db2 database.

0 Answers  


What is the maximum size of a char data type in db2?

0 Answers  


What else is there in the PLAN apart from the access path?

1 Answers  


Cursors can be declared in both working-storage & procedure division, agreed. But is there any difference? If could you please suggest what is the difference

0 Answers  


pls explain the precompilation process of cobol-db2 pgm

3 Answers   HCL, IBM,


What is the difference between group by and order by?

2 Answers   IBM, TCS,


How to resolve -818 sql code in DB2?

2 Answers   Cap Gemini,


Categories