Re: Copy data from table to table

Поиск
Список
Период
Сортировка
От Michael Fuhr
Тема Re: Copy data from table to table
Дата
Msg-id 20050427133444.GA34371@winnie.fuhr.org
обсуждение исходный текст
Ответ на Copy data from table to table  ("Keith Worthington" <keithw@narrowpathinc.com>)
Список pgsql-novice
On Wed, Apr 27, 2005 at 09:16:09AM -0400, Keith Worthington wrote:
>
> I can not think of a way to copy data directly betweeen two tables.

Have you tried INSERT ... SELECT?

INSERT INTO foo (a, b, c) SELECT a, b, c FROM bar;

--
Michael Fuhr
http://www.fuhr.org/~mfuhr/

В списке pgsql-novice по дате отправления:

Предыдущее
От: "Keith Worthington"
Дата:
Сообщение: Copy data from table to table
Следующее
От: George Weaver
Дата:
Сообщение: Re: Copy data from table to table