Re: update one table with another - Mailing list pgsql-general

From Alban Hertroys
Subject Re: update one table with another
Date
Msg-id 84643391-8BDB-4A36-A670-395B3C42A8E0@solfertje.student.utwente.nl
Whole thread Raw
In response to update one table with another  (Matthew Pugsley <matthew.pugsley@gmail.com>)
List pgsql-general
On Apr 20, 2009, at 10:34 PM, Matthew Pugsley wrote:

> I've solved it.
>
> I just used a subselect. Worked very quickly. I had a lot of trouble
> with subqueries when I first started databases with MySQL. So I have
> been afraid of them.
>
> update entities
> set customer_status = select(customer_status from
> entity_dimension_update where entities.entity_id =
> entity_dimension_update.entity_id);

What a peculiar way to write a subquery, with the braces like that.
Normally you'd put the opening brace before the select statement, not
after it.

>  Worked almost instantly.

Alternatively you could use UPDATE...FROM:

update entities
set customer_status = t2.customer_status
from entity_dimension_update as t2
where entity_id = t2.entity_id

Alban Hertroys

--
If you can't see the forest for the trees,
cut the trees and you'll see there is no forest.


!DSPAM:737,49ed0151129747011493647!



pgsql-general by date:

Previous
From: Merlin Moncure
Date:
Subject: Re: Postgresql 8.3X supports Arrays of Composite Types?
Next
From: jc_mich
Date:
Subject: Re: Doubt about join clause