From: | "Guillaume Lelarge" <guillaume(dot)lelarge(at)gmail(dot)com> |
---|---|
To: | "Guillaume LELARGE" <guillaume(dot)lelarge(at)gmail(dot)com>, emilu(at)encs(dot)concordia(dot)ca, pgsql-sql(at)postgresql(dot)org |
Subject: | Re: Add column and specify the column position in a table |
Date: | 2006-05-18 15:43:19 |
Message-ID: | d854adec0605180843y646f953cwb490a03f3c1d0602@mail.gmail.com |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-sql |
2006/5/18, Alvaro Herrera <alvherre(at)commandprompt(dot)com>:
> Guillaume LELARGE wrote:
> > Emi Lu a écrit :
> > > I am trying to insert one column to a specific position in a table.
> > >
> > > In mysql, I can do:
> > > . create table test(id varchar(3), name varchar(12));
> > > . alter table test add column givename varchar(12) after id;
> > >
> > >
> > > I am looking for similar things in postgresql to add a new column to the
> > > correct position in a table.
> >
> > There's no similar thing in PostgreSQL. You have to duplicate the table
> > to do it.
>
> ... which is the same thing MySQL does, only you must do it explicitely.
>
Do you mean that, using "alter table test add column" with the "after"
option, MySQL creates a new table, populates it with the old table
data and finally drops the old table ? I mean, there's the same
performance problem with big tables ?
--
Guillaume.
From | Date | Subject | |
---|---|---|---|
Next Message | Andrew Sullivan | 2006-05-18 15:58:29 | Re: Add column and specify the column position in a table |
Previous Message | Joe | 2006-05-18 14:23:12 | Re: MySQL DB to PostgresSQL DB |