SQL-Statment

Поиск
Список
Период
Сортировка
От christoph.dellavalle@goetheanum.ch
Тема SQL-Statment
Дата
Msg-id D1ECCF616FF6D611A3C3000102755F454D5884@s2bdcmail.aag
обсуждение исходный текст
Ответы Re: SQL-Statment  (Bruno Wolff III <bruno@wolff.to>)
Список pgsql-novice
Hi there

I'm trying to compact an imported table.  Any suggestions how this can be done:

Table now:

ID    attr1    attr2
1    5    NULL
1    NULL    7
2    8    NULL
3    NULL    4
4    NULL    NULL

The Result should look like this:

ID    attr1    attr2
1    5    7
2    8    NULL
3    NULL    4
4    NULL    NULL


Thanks for every hint.

Chris



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

Предыдущее
От: Tom Lane
Дата:
Сообщение: Re: How to run 2+ versions of PostgreSQL concurrently
Следующее
От: Bruno Wolff III
Дата:
Сообщение: Re: SQL-Statment