Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Does having a primary key column mean there is an index on that column? If so, what kind of index is it?

share|improve this question
2  
Which DB server? – SLaks Feb 1 '10 at 20:21
I use SQL Server 2008 – Shayan Feb 1 '10 at 20:24

6 Answers

up vote 7 down vote accepted

For SQL Server, which I believe from previous questions is what you're using, when you define a PRIMARY KEY, it will automatically have a index on that column which will default to being a CLUSTERED index. You can define whether it should be a NONCLUSTERED or a CLUSTERED index when you create the constraint.

share|improve this answer
+1 and FYI for the OP: Indexes are not covered by ANSI, though MySQL and SQL Server use the same terminology. Oracle does not distinguish - they are just indexes. Also re: SQL Server - a clustered index is created by default when defining a primary key, but the clustered index can be changed to associate other column(s) in the table. – OMG Ponies Feb 1 '10 at 20:36

Yes, a primary key implies an index.

If the primary key is clustered, the index will be part of the main table file. It it's not clustered, it will be part of a separate index file.

share|improve this answer
So if I have a primary key(which necessarily I have) I can't have another clustered index? Because just one clustered index is possible. How can I say that I don't want it to be unclustered? – Shayan Feb 1 '10 at 20:27
1  
You can create a nonclustered primary key using the nonclustered keyword, see msdn.microsoft.com/en-us/library/aa258255(SQL.80).aspx – Andomar Feb 1 '10 at 20:29

It depends on the database.

Some databases either require or automatically create primary key indexes as a way to enforce the uniqueness of a primary key. Others are perfectly happy to perform a full scan of the table.

Which database are you using?

EDIT:

  • SQLServer (versions 7 - 2008) creates indexes or primary keys - you can control whether or not it is clustered.
  • Older versions of Oracle (8i,9i) also create indexes when you add a unique key constraint. Newer versions (10g) don't seem to, based on the test case I just looked at.
share|improve this answer
SQL Server 2008 – Shayan Feb 1 '10 at 20:24

In any "real" database, yes having a primary key means having a unique index. In some databases, the primary key index can/will cluster on key values too.

share|improve this answer

In all the DBs I've used, PRIMARY KEY is basically just a UNIQUE index.

share|improve this answer
I think this is basically correct. So +1 to compensate for the unexplained downvote :) – Andomar Feb 1 '10 at 20:32
LOL, thanks Andomar! – Kaleb Brasee Feb 2 '10 at 0:41

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.