Re: Add columns to table; insert values based on row

Поиск
Список
Период
Сортировка
От Rich Shepard
Тема Re: Add columns to table; insert values based on row
Дата
Msg-id alpine.LNX.2.20.1811011349010.13759@salmo.appl-ecosys.com
обсуждение исходный текст
Ответ на Re: Add columns to table; insert values based on row  (Adrian Klaver <adrian.klaver@aklaver.com>)
Ответы Re: Add columns to table; insert values based on row  (Tim Cross <theophilusx@gmail.com>)
Список pgsql-general
On Thu, 1 Nov 2018, Adrian Klaver wrote:

>> alter table stations add column start_date date;
>> alter table stations add column end_date date;
>> alter table stations add column howmany integer;
>> alter table stations add column bin_col char(8);
>> 
>> insert into stations (start_date, end_date, howmany, bin_col) values ( )
>>    select site_nbr from stations
>>      where site_nbr = ' ';

> Are you trying to add new data to existing records?

Adrian,

   I am adding four columns to an existing table that already contains four
columns.

> If so where is the new data coming from?

   I have a text file and will fill each insert statement by hand if there's
not a more efficient way to do this.

Regards,

Rich


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

Предыдущее
От: Ravi Krishna
Дата:
Сообщение: Truncation of UNLOGGED tables upon restart.
Следующее
От: Rich Shepard
Дата:
Сообщение: Re: Add columns to table; insert values based on row