Re: trouble with a join on OS X

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: trouble with a join on OS X
Дата
Msg-id 26885.1170473477@sss.pgh.pa.us
обсуждение исходный текст
Ответ на Re: trouble with a join on OS X  (Kirk Wythers <kwythers@umn.edu>)
Список 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 по дате отправления:

Предыдущее
От: "Joshua D. Drake"
Дата:
Сообщение: Re: trouble with a join on OS X
Следующее
От: Shane Ambler
Дата:
Сообщение: Re: trouble with a join on OS X