Re: Populating using Select

From: Andrew Sullivan <ajs(at)crankycanuck(dot)ca>
To: pgsql-sql(at)postgresql(dot)org
Subject: Re: Populating using Select
Date: 2006-09-26 12:52:56
Message-ID: 20060926125256.GB12878@phlogiston.dyndns.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-sql

On Tue, Sep 26, 2006 at 09:35:18AM -0300, Ezequias Rodrigues da Rocha wrote:
> I was trying to make something like this:
>
> Insert into base.neigborhood values (nextval(), Select distinct name from
> base.clients).

Not quite.

INSERT INTO base.neighborhood (column list)
SELECT nextval('sequence name'),
name
FROM base.clients
GROUP BY name;

Note that this will give you a different number for each of the
names. If what you want is for them all to have the same number,
then perform the nextval and then call currval() on the sequence.

By the way, this is a pretty common use of SQL (inserting into one
table the results of a select from another). If you thought this
wouldn't work, you maybe need a little more SQL practice than you
think you do. Any of the excellent PostgreSQL books out there should
cover this much. Alternatively, the standard SQL introductions would
get you there.

A

--
Andrew Sullivan | ajs(at)crankycanuck(dot)ca
In the future this spectacle of the middle classes shocking the avant-
garde will probably become the textbook definition of Postmodernism.
--Brad Holland

In response to

Responses

Browse pgsql-sql by date

  From Date Subject
Next Message Kyle Bateman 2006-09-26 14:19:21 Finding context for error log
Previous Message Ezequias Rodrigues da Rocha 2006-09-26 12:35:18 Populating using Select