Re: adding a field

Поиск
Список
Период
Сортировка
От Thomas Kellerer
Тема Re: adding a field
Дата
Msg-id k02g0f$u1v$1@dough.gmane.org
обсуждение исходный текст
Ответ на adding a field  (Anne Wainwright <anotheranne@fables.co.za>)
Ответы Re: adding a field  (Anne Wainwright <anotheranne@fables.co.za>)
Список pgsql-novice
Anne Wainwright wrote on 10.08.2012 10:04:
> to add a field I have to take the data out, add a new field to postgres,
> add a new (delimiter)field with any default data at the end of each
> record, then put the data back.
>
> right?
>

No, just add it:

    alter table foo add column new_col text;

adds a new character column.

What do you think a "delimiter field" is?





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

Предыдущее
От: Anne Wainwright
Дата:
Сообщение: adding a field
Следующее
От: Anne Wainwright
Дата:
Сообщение: Re: adding a field