Re: [GENERAL] Re: More PostgreSQL stuff

Поиск
Список
Период
Сортировка
От Bruce Momjian
Тема Re: [GENERAL] Re: More PostgreSQL stuff
Дата
Msg-id 199810041846.OAA19549@candle.pha.pa.us
обсуждение исходный текст
Ответ на Re: [GENERAL] Re: More PostgreSQL stuff  ("Marc G. Fournier" <scrappy@hub.org>)
Список pgsql-general
> On Fri, 2 Oct 1998, Oliver Elphick wrote:
>
> >   > . I wonder how one could add or remove columns from existing tables.
> >   >
> >   >   With mSQL this was possible with a trick.  You had to dump the
> >   >   whole table but you could tell the dump program to add dummy fields
> >   >   or to leave out existing fields.  Is there any such possibility
> >   >   with PostgreSQL?
>
>     chk out the 'ALTER TABLE' man page...you can add columns quite
> easily using this.  removing coloumsn is a little more tricky at this
> point in time, but we're hoping to add it to the ALTER TABLE syntax 'in
> the future'.
>
>     Basically, to drop a column, do an 'INSERT INTO...SELECT FROM' (my
> syntax may be slightly off, please check man pages) from the table you
> want to remove the column from, such that you only insert the columns you
> want to remain.  Then, when finished, do a ... damn, haven't used this one
> yet, so don't remember what the 'command' is...but there is one to do a
> RENAME of a table...rename the old to something different, and rename the
> new to the old...

This is an FAQ item.

--
  Bruce Momjian                        |  http://www.op.net/~candle
  maillist@candle.pha.pa.us            |  (610) 853-3000
  +  If your life is a hard drive,     |  830 Blythe Avenue
  +  Christ can be your backup.        |  Drexel Hill, Pennsylvania 19026


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

Предыдущее
От: "Marc G. Fournier"
Дата:
Сообщение: Re: [GENERAL] Re: More PostgreSQL stuff
Следующее
От: "Oliver Elphick"
Дата:
Сообщение: Re: [GENERAL] System admin