Re: INSERT... WHERE

From: Robert James <srobertjames(at)gmail(dot)com>
To: Chris Angelico <rosuav(at)gmail(dot)com>
Cc: pgsql-general(at)postgresql(dot)org
Subject: Re: INSERT... WHERE
Date: 2013-01-14 18:26:14
Message-ID: CAGYyBgj4S1r9QP6yJ-8rGQBP+icTGfHauoAVP-QWTJNxWn5QSg@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

On 1/13/13, Chris Angelico <rosuav(at)gmail(dot)com> wrote:
> On Mon, Jan 14, 2013 at 3:37 PM, Robert James <srobertjames(at)gmail(dot)com>
> wrote:
>> Thanks. But how do I do that where I have many literals? Something like:
>>
>> INSERT INTO seltest (id, a, b) SELECT (1,2,3),(4,5,6),(7,8,9) WHERE b
>> IN (SELECT ...)
>
> You can use WITH clauses in crazy ways with PostgreSQL. I haven't
> actually tried it, but you should be able to put your VALUES behind a
> WITH, then SELECT from that WHERE blah blah, and INSERT that SELECT.
>
> As they say, knock yourself out! :)
>
> ChrisA

I don't quite follow - could you please elaborate?

In response to

Responses

Browse pgsql-general by date

  From Date Subject
Next Message Tom Lane 2013-01-14 18:28:08 Re: lock and socket file
Previous Message Brian Sutherland 2013-01-14 17:55:53 Re: plpython intermittent ImportErrors