Re: UPDATE .. JOIN?

From: Rodrigo E(dot) De León Plicet <rdeleonp(at)gmail(dot)com>
To: "Sergei Shelukhin" <realgeek(at)gmail(dot)com>
Cc: pgsql-general(at)postgresql(dot)org
Subject: Re: UPDATE .. JOIN?
Date: 2008-01-13 04:22:16
Message-ID: a55915760801122022k11b4de14w575d38d26aba4ed7@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

On Jan 12, 2008 5:22 PM, Sergei Shelukhin <realgeek(at)gmail(dot)com> wrote:
> Hi.
>
> I was wondering if I could do something similar to this in Postgres and
> if yes how?
>
> UPDATE table1 SET blah = 1 FROM table1
> INNER JOIN table2 ON table1.id = table2.t1id

UPDATE table1 t1
SET blah = 1
FROM table2 t2
WHERE t1.id = t2.t1id

> If not, is there any way to make UPDATE ... WHERE id IN (....) use indexes?

It depends. Read the docs:

http://www.postgresql.org/docs/8.2/static/using-explain.html
http://www.postgresql.org/docs/8.2/static/planner-stats.html
http://www.postgresql.org/docs/8.2/static/planner-stats-details.html

In response to

Responses

Browse pgsql-general by date

  From Date Subject
Next Message Sergei Shelukhin 2008-01-13 04:26:26 Re: UPDATE .. JOIN?
Previous Message Tom Lane 2008-01-12 23:46:50 Re: Prepared Statements