Re: R: Field's position in Table

Поиск
Список
Период
Сортировка
От vinny
Тема Re: R: Field's position in Table
Дата
Msg-id 0a4a445e106bc45529414e6cbe54af2a@xs4all.nl
обсуждение исходный текст
Ответ на R: Field's position in Table  (Scara Maccai <m_lists@yahoo.it>)
Ответы Re: R: Field's position in Table
Re: R: Field's position in Table
Список pgsql-general
On Thu, 20 Aug 2009 09:21:25 +0000 (GMT), Scara Maccai <m_lists@yahoo.it>
wrote:
>> When adding a new field in the existing table, i
>> want to add the filed in a particular position.
>
> I'm afraid the only way would be re-writing the whole table (pseudo
sql):
>
> BEGIN;
> create table newtable as select field1, 'newfield default value', field2
> from old_table;
> create_all_indexes on newtable;
> drop old_table;
> commit;
>
> things get complicated if you have foreign keys pointing to old_table...

Which is why you might be better off putting the new field at the end of
the table
and using an administrative view to make your viewing easier.

I can't really think of any real reason to put the field at a particular
position, applications
don't reallty care about the order of fields.

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

Предыдущее
От: Scara Maccai
Дата:
Сообщение: R: Field's position in Table
Следующее
От: Wolfgang Keller
Дата:
Сообщение: Generate LaTeX doc from PostgreSQL (autodoc)?