Search Postgresql Archives

Re: Adding multiple column in alter statement?

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



am  Thu, dem 05.04.2007, um  6:58:01 +0100 mailte Ashish Karalkar folgendes:
> Hello All,
> I want to add multiple  column to a table using single alter statemet,
> someting like this:
>  
> alter table admin_session  add column accounting_session varchar(1) not null
> default '0',accounting_active varchar(1),acc_start_date date,acc_end_date date;
>  
> is there any way?

Yes, read the doc ;-)

test=# \d bla
      Table "public.bla"
 Column |  Type   | Modifiers
--------+---------+-----------
 id     | integer |

test=# alter table bla add column name1 text, add column name2 text, add column name3 text;
ALTER TABLE
test=*# \d bla
      Table "public.bla"
 Column |  Type   | Modifiers
--------+---------+-----------
 id     | integer |
 name1  | text    |
 name2  | text    |
 name3  | text    |




Andreas
-- 
Andreas Kretschmer
Kontakt:  Heynitz: 035242/47150,   D1: 0160/7141639 (mehr: -> Header)
GnuPG-ID:   0x3FFF606C, privat 0x7F4584DA   http://wwwkeys.de.pgp.net


[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Index of Archives]     [Postgresql Jobs]     [Postgresql Admin]     [Postgresql Performance]     [Linux Clusters]     [PHP Home]     [PHP on Windows]     [Kernel Newbies]     [PHP Classes]     [PHP Books]     [PHP Databases]     [Postgresql & PHP]     [Yosemite]
  Powered by Linux