Re: [ADMIN] select into...

2009-03-16 Thread Fernando Arancibia
Hi, try insert into my_table select * from old_table where (some_condition); bye Fernando. 2009/3/16 Tena Sakai > Hi Everybody, > > I want to execute a query below: > > select * > into my_table > from old_table >where (some_condition); > > The trouble is that the manual page stat

Re: [ADMIN] select into...

2009-03-16 Thread Tena Sakai
Thank you, Fernando. Thank you, Kevin. Regards, Tena Sakai tsa...@gallo.ucsf.edu -Original Message- From: Fernando Arancibia [mailto:faranci...@iswitch.cl] Sent: Mon 3/16/2009 4:13 PM To: Tena Sakai Cc: pgsql-admin@postgresql.org Subject: Re: [ADMIN] select into... Hi, try insert

Re: [ADMIN] select into...

2009-03-16 Thread Tena Sakai
Many thanks, Scott. Tena Sakai -Original Message- From: Scott Marlowe [mailto:scott.marl...@gmail.com] Sent: Mon 3/16/2009 4:12 PM To: Tena Sakai Cc: pgsql-admin@postgresql.org Subject: Re: [ADMIN] select into... On Mon, Mar 16, 2009 at 5:08 PM, Tena Sakai wrote: > Hi Everyb

Re: [ADMIN] select into...

2009-03-16 Thread Kevin Grittner
>>> "Tena Sakai" wrote: > What I want is to append my_table. Is there any way > to get postgres to do what I want done? PostgreSQL supports the SQL standard syntax for this: insert into my_table select * from old_table where (some_condition); -Kevin -- Sent via pgsql-admin mail

Re: [ADMIN] select into...

2009-03-16 Thread Scott Marlowe
On Mon, Mar 16, 2009 at 5:08 PM, Tena Sakai wrote: > Hi Everybody, > > I want to execute a query below: > >   select * >     into my_table >     from old_table >    where (some_condition); > > The trouble is that the manual page states that this would > "SELECT INTO creates a new table and fills i

[ADMIN] select into...

2009-03-16 Thread Tena Sakai
Hi Everybody, I want to execute a query below: select * into my_table from old_table where (some_condition); The trouble is that the manual page states that this would "SELECT INTO creates a new table and fills it with data computed by a query." What I want is to append my_table.