Re[2]: How to join tables with different columns and different number of rows?

Поиск
Список
Период
Сортировка
От Igor
Тема Re[2]: How to join tables with different columns and different number of rows?
Дата
Msg-id 1195882311.20010627142523@osb368.nnov.ru
обсуждение исходный текст
Ответ на Re: How to join tables with different columns and different number of rows?  ("Richard Huxton" <dev@archonet.com>)
Ответы Re: How to join tables with different columns and different number of rows?  (Martijn van Oosterhout <kleptog@svana.org>)
Список pgsql-general
Thank you for replay, it is working, but
i would like to get result table with 5 rows.
In your example we willl get 8 rows

RH> From: "Igor" <dbmanager@osb368.nnov.ru>

>> Hello!
>>
>> What SQL query will help me to concatenate two different tables
>> with different number of rows? For example , i have first table
>> with column1 and column2 , having 3 rows , and second table
>> with column3, column4 , having 5 rows. How to make
>> third table with column1,column2,column3,column4 and 5 rows in it
>> (and last two rows in column1 and column2 are empty)

RH> Something along the lines of:

RH> SELECT col1,col2,'' as dummy3, '' as dummy4
RH> FROM table1
RH> UNION
RH> SELECT '' as dummy1, '' as dummy2, col3, col4
RH> FROM table2



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

Предыдущее
От: Alex Pilosov
Дата:
Сообщение: Re: Blobs in PostgreSQL
Следующее
От: Martijn van Oosterhout
Дата:
Сообщение: Re: How to join tables with different columns and different number of rows?