Can I drop primary key index without dropping primary key constraint in postgresql?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
Your question is a bit confusing. I think you must mean this:
No. A uniqueness constraint requires an index. You can make your constraint into an ordinary non-primary index, but you can't make it not an index. Also, read about primary keys in the documentation:
So if a column is a primary key it has by definition a unique constraint and therefore also an index. You cannot have a primary key that isn't an index. |
||||
|
|