Re: trouble with a join on OS X - Mailing list pgsql-performance

From Tom Lane
Subject Re: trouble with a join on OS X
Date
Msg-id 26885.1170473477@sss.pgh.pa.us
Whole thread Raw
In response to Re: trouble with a join on OS X  (Kirk Wythers <kwythers@umn.edu>)
List pgsql-performance
Kirk Wythers <kwythers@umn.edu> writes:
> The new table needs to be filled with the results of the join. If
> there is a way to do this without a SELECT, please share.

If it's an entirely new table, then you probably want to use INSERT
... SELECT.  If what you want is to update existing rows using a join,
you can use UPDATE ... FROM (not standard) or something involving a
sub-select.  You'd need to state your problem in some detail to get more
help than that...

            regards, tom lane

pgsql-performance by date:

Previous
From: "Joshua D. Drake"
Date:
Subject: Re: trouble with a join on OS X
Next
From: Shane Ambler
Date:
Subject: Re: trouble with a join on OS X