Re: How to copy data between joined columns?

From: Scott Marlowe <smarlowe(at)g2switchworks(dot)com>
To: Bryce Nesbitt <bryce1(at)obviously(dot)com>
Cc: pgsql-sql(at)postgresql(dot)org
Subject: Re: How to copy data between joined columns?
Date: 2006-04-07 20:34:49
Message-ID: 1144442088.32269.31.camel@state.g2switchworks.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-sql

On Fri, 2006-04-07 at 15:32, Bryce Nesbitt wrote:
> I have a need to copy/update data from one column to another, based on a
> join condition. Is this easy to do in pure SQL? I have google'ed
> without luck for a easy solution (that's not Microsoft specific, that
> is). For example:
>
> postgres=#
> select xx_thing.date_start,xx_note.created_date
> from xx_thing
> join xx_issue using (thing_id) join xx_note using (issue_id)
> where xx_note.created_date is not null;
>
> date_start | created_date
> ----------------+---------------------
> 2006-03-17 | 1900-01-01
> (...many... rows)
>
> I need to copy date_start to created_date, for all records that meet a
> particular where condition.

If it's for the same rows in the same table, you're overworking it.

update table set field1=field2 where somecondition;

In response to

Responses

Browse pgsql-sql by date

  From Date Subject
Next Message Jeff Boes 2006-04-07 21:01:55 Joins involving functions
Previous Message Bryce Nesbitt 2006-04-07 20:32:22 How to copy data between joined columns?