Re: Migrating Data Between PG Tables

Поиск
Список
Период
Сортировка
От Mike Darretta
Тема Re: Migrating Data Between PG Tables
Дата
Msg-id 4163042F.3060805@metnet.navy.mil
обсуждение исходный текст
Ответ на Re: Migrating Data Between PG Tables  (banghe <banghe@baileylink.net>)
Список pgsql-admin
banghe wrote:

> One sql statement can solve this:
>
> sql> isnert into table_b (id, name, summary) select id, name, desc
> from table_a;
>
> Banghe
>
> Mike Darretta wrote:
>
>> Does anyone have a suggestion on the best way to migrate data between
>> two slightly different tables? For example:
>>
>> Table A
>> --------
>> id : integer
>> name : string
>> desc : string
>>
>>
>> Table B
>> --------
>> id : integer
>> name : string
>> date : date
>> summary : string
>>
>> In this example, I would like to copy all the data from Table A into
>> B, using the desc column to populate the summary column.
>>
>> Thanks,
>> Mike
>>
>>
>>
>> ---------------------------(end of broadcast)---------------------------
>> TIP 1: subscribe and unsubscribe commands go to majordomo@postgresql.org
>>
>
>
Thanks. I figured it was simple...


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

Предыдущее
От: banghe
Дата:
Сообщение: Re: Migrating Data Between PG Tables
Следующее
От: "Simon Riggs"
Дата:
Сообщение: Re: Enabling --log-update