| From: | "Leif B(dot) Kristensen" <leif(at)solumslekt(dot)org> |
|---|---|
| To: | pgsql-sql(at)postgresql(dot)org |
| Subject: | Re: update with subselect (long) |
| Date: | 2005-03-17 14:34:57 |
| Message-ID: | 200503171534.58027.leif@solumslekt.org |
| Views: | Whole Thread | Raw Message | Download mbox | Resend email |
| Thread: | |
| Lists: | pgsql-sql |
On Thursday 17 March 2005 15:01, Stephan Szabo wrote:
> The above needs some work. The below should be acceptable to the
> system.
>
> update name_parts set name_part_type=5 from (select name_id from
> name_parts where name_part_type=6) as gpt_type where
> name_parts.name_id=gpt_type.name_id and name_part_type=3;
Thank you very much!
> I'm a bit worried about blindly changing the type for anything that
> has a name_part_type=6 record, but given your usage that might be
> okay.
Yes, this is a kind of one-shot job. I shall be going through all the
records manually later and correct the ones that don't fit the bill
exactly.
--
Leif Biberg Kristensen
http://solumslekt.org/
| From | Date | Subject | |
|---|---|---|---|
| Next Message | Peter Eisentraut | 2005-03-17 16:15:45 | Re: lower and unicode |
| Previous Message | Richard Huxton | 2005-03-17 14:05:45 | Re: Query performance problem |