Re: alter table table add column

From: Oliver Elphick <olly(at)lfix(dot)co(dot)uk>
To: pgsql-novice <pgsql-novice(at)postgresql(dot)org>
Subject: Re: alter table table add column
Date: 2007-07-31 06:25:53
Message-ID: 1185863153.10580.92.camel@linda.lfix.co.uk
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-admin pgsql-general pgsql-novice pgsql-sql

On Tue, 2007-07-31 at 12:19 +0800, Ronald Rojas wrote:
> Hi,
>
> Anybody knows how to add column with reference to BEFORE or AFTER any
> given column? Let say here's my table structure:
>
> Column | Type | Modifiers
> ----------+-------------------+-----------
> surname | character varying |
> lastname | character varying |
> address | character varying |
>
> And, I want to add the field name age with type integer after lastname
> OR before the address field. How to I do that?
>
> I would really appreciate your response.

It isn't possible. Nor is it really necessary, since you can ask for
columns in any order in a SELECT.

If you really want to do it, you need to dump the table to a new table
with the columns in the desired order; delete the old table and rename
the new one.

Alternatively, add the new column (which will come at the end), add a
new address column and set its contents to be the same as the current
address column, finally drop the old address column. (This will waste
space in the table.)

--
Oliver Elphick olly(at)lfix(dot)co(dot)uk
Isle of Wight http://www.lfix.co.uk/oliver
GPG: 1024D/A54310EA 92C8 39E7 280E 3631 3F0E 1EC0 5664 7A2F A543 10EA
========================================
Do you want to know God? http://www.lfix.co.uk/knowing_god.html

--
This message has been scanned for viruses and
dangerous content by MailScanner, and is
believed to be clean.

In response to

Browse pgsql-admin by date

  From Date Subject
Next Message Ronald Rojas 2007-07-31 06:37:28 Re: [NOVICE] alter table table add column
Previous Message Michael Glaesemann 2007-07-31 05:56:11 Re: [NOVICE] alter table table add column

Browse pgsql-general by date

  From Date Subject
Next Message David Fetter 2007-07-31 06:26:24 Re: plperl syntax highlighting for vi
Previous Message Michael Glaesemann 2007-07-31 05:56:11 Re: [NOVICE] alter table table add column

Browse pgsql-novice by date

  From Date Subject
Next Message Ronald Rojas 2007-07-31 06:37:28 Re: [NOVICE] alter table table add column
Previous Message Oliver Elphick 2007-07-31 06:24:34 Re: SQL_CALC_FOUND_ROWS equivalent in PostgreSQL

Browse pgsql-sql by date

  From Date Subject
Next Message Ronald Rojas 2007-07-31 06:37:28 Re: [NOVICE] alter table table add column
Previous Message Michael Glaesemann 2007-07-31 05:56:11 Re: [NOVICE] alter table table add column