How to change primary key in a table

Поиск
Список
Период
Сортировка
От Rikard Bosnjakovic
Тема How to change primary key in a table
Дата
Msg-id d9e88eaf0911120353v3f2360aap14067dac6c2304f6@mail.gmail.com
обсуждение исходный текст
Ответы Re: How to change primary key in a table  (Thom Brown <thombrown@gmail.com>)
Re: How to change primary key in a table  (Tom Lane <tgl@sss.pgh.pa.us>)
Список pgsql-novice
I have the following table:

CREATE TABLE penalty_codes (
    penalty_code varchar(10),
    penalty_name varchar(32),
    penalty_name_sv varchar(40),
    penalty_id serial PRIMARY KEY
);

which I have been using for a year or two. Today I realized that the
id-column being a primary key is really not useful, while the
code-column is instead. Three other tables refer on the id-values so
the column can certainly not be dropped, but is it possible to change
the primary key to the code-column without breaking things?

I tried this:

========================================
SQL error:
ERROR:  cannot drop constraint penalty_codes_pkey on table
penalty_codes because other objects depend on it
HINT:  Use DROP ... CASCADE to drop the dependent objects too.

In statement:
ALTER TABLE "penalty_codes" DROP CONSTRAINT "penalty_codes_pkey"
========================================

I'm aware of what CASCADE does when you drop a table for instance, but
I have no idea what happens if you cascade drop a primary key.

How can I switch the primary keys in this table? Is it possible?


--
- Rikard

В списке pgsql-novice по дате отправления:

Предыдущее
От: Kris Kewley
Дата:
Сообщение: Re: Pros / cons for indexing a small table
Следующее
От: Thom Brown
Дата:
Сообщение: Re: How to change primary key in a table