Re: Insert using a subselect? - Mailing list pgsql-novice

From A_Schnabel@t-online.de (Andre Schnabel)
Subject Re: Insert using a subselect?
Date
Msg-id 001a01c13c81$74f14060$0201a8c0@aschnabel.homeip.net
Whole thread Raw
In response to Re: Insert using a subselect?  (Francisco Reyes <lists@natserv.com>)
List pgsql-novice
----- Original Message -----
From: "Francisco Reyes" <lists@natserv.com>
Subject: Re: [NOVICE] Insert using a subselect?


>
> so it is not possible to populate an insert from a subselect if there is
> more than one row/column?

Of course, it is.
But you should just either use he keyword "values" or use a select.

The right statement is:
insert into hearn_dates (date)
select distinct merge_date from hearn;

For further details have a look at the iDoc's
http://www.postgresql.org/idocs/index.php?sql-insert.html

Andre


pgsql-novice by date:

Previous
From: Francisco Reyes
Date:
Subject: Re: Insert using a subselect?
Next
From: "Sykora, Dale"
Date:
Subject: [novice] pg_regress.sh problem