Re: How can I delete a primary or foreign key?

Поиск
Список
Период
Сортировка
От Richard Huxton
Тема Re: How can I delete a primary or foreign key?
Дата
Msg-id 200402201708.22599.dev@archonet.com
обсуждение исходный текст
Ответ на Re: How can I delete a primary or foreign key?  (tibor <tiborh@mail.datanet.hu>)
Ответы Re: How can I delete a primary or foreign key?  (tibor <tiborh@mail.datanet.hu>)
Список pgsql-general
On Friday 20 February 2004 16:04, tibor wrote:
> I forgot to mention that I have tried numerous variations.
> The one quoted in the original mail was from "The Complete Reference"

Which book is this?

Look in the SQL Command reference - ALTER TALBLE

> series. I've also tried the one that the \h command suggests:
>
> ALTER TABLE PARENTS DROP CONSTRAINT FOREIGN KEY (TYPE) CASCADE;

The \h says the same as the manuals:
ALTER TABLE [ ONLY ] table [ * ]
    DROP CONSTRAINT constraint_name [ RESTRICT | CASCADE ]

If you have a table called "mytab" and a foreign-key constraint called
"myfkey" then you would use

ALTER TABLE mytab DROP CONSTRAINT myfkey;

If your constaint has a generated name like $1 then you'll want to quote it
"$1"
--
  Richard Huxton
  Archonet Ltd

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

Предыдущее
От: tibor
Дата:
Сообщение: Re: How can I delete a primary or foreign key?
Следующее
От: tibor
Дата:
Сообщение: Re: How can I delete a primary or foreign key?