Re: Changed a column type from "integer" to varchar

From: Alvaro Herrera <alvherre(at)dcc(dot)uchile(dot)cl>
To: "Joshua D(dot) Drake" <jd(at)commandprompt(dot)com>
Cc: Ying Lu <ying_lu(at)cs(dot)concordia(dot)ca>, pgsql-general(at)postgresql(dot)org
Subject: Re: Changed a column type from "integer" to varchar
Date: 2004-09-14 20:45:53
Message-ID: 20040914204553.GD13449@dcc.uchile.cl
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

On Tue, Sep 14, 2004 at 01:33:32PM -0700, Joshua D. Drake wrote:

> You can not currently change the data type with alter table.

... but you can add a new column with the desired type, UPDATE it with
the transformed data, and the DROP the old column.

> Ying Lu wrote:

> >I have a question about alter a column's type in a postgreSQL table.
> >
> >For example, I have 10, 000 records in a table name "test", I'd like to
> >change column "machineID" type from integer to varchar. I am looking for
> >something like:
> >
> >alter table test alter column machineID ... ... varchar

--
Alvaro Herrera (<alvherre[a]dcc.uchile.cl>)
"Escucha y olvidarás; ve y recordarás; haz y entenderás" (Confucio)

In response to

Browse pgsql-general by date

  From Date Subject
Next Message Greg Donald 2004-09-14 20:53:07 Re: Changed a column type from "integer" to varchar
Previous Message Arthur Hoogervorst 2004-09-14 20:39:10 Re: Changed a column type from "integer" to varchar