From: | Michael Fuhr <mike(at)fuhr(dot)org> |
---|---|
To: | Steve Tucknott <steve(at)retsol(dot)co(dot)uk> |
Cc: | PostGreSQL <pgsql-novice(at)postgresql(dot)org> |
Subject: | Re: Alter Column |
Date: | 2004-10-27 08:58:23 |
Message-ID: | 20041027085823.GA51684@winnie.fuhr.org |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-novice |
On Wed, Oct 27, 2004 at 09:43:43AM +0100, Steve Tucknott wrote:
> PostgreSQL 7.4.5
>
> Is there a simple way of altering the definition of a column?
>
> Say I have a column defined as CHAR(5) and I want to make that CHAR(10)
> NOT NULL - apart from creating a second table and copying the table,
> dropping the original and renaming the copy.
This is answered in the FAQ:
http://www.postgresql.org/docs/faqs/FAQ.html#4.4
> What I am hoping for is 'yes, V8 has ALTER TABLE MODIFY (colName
> definition) ' ;-)
In 8.0 you can change a column's type with ALTER TABLE.
--
Michael Fuhr
http://www.fuhr.org/~mfuhr/
From | Date | Subject | |
---|---|---|---|
Next Message | ishaame | 2004-10-27 09:33:29 | Re: Cannot Create tables - on Windows XP |
Previous Message | Steve Tucknott | 2004-10-27 08:43:43 | Alter Column |