How I can join between the other database's tables?

Поиск
Список
Период
Сортировка
От Ioseph Kim
Тема How I can join between the other database's tables?
Дата
Msg-id 20001227001556.A32555@paolo.net
обсуждение исходный текст
Ответы Re: How I can join between the other database's tables?  (Anand Raman <araman@india-today.com>)
Список pgsql-general
# createdb a
# createdb b
# psql a
create table a (name text);
\q
# psql b
create table a (name text);

-------
Now, I want to join table a of database a and table a of database b.
How?


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

Предыдущее
От: Uro¹ Gruber
Дата:
Сообщение: RETURN multiple columns in FUNCTION
Следующее
От: Anand Raman
Дата:
Сообщение: Re: How I can join between the other database's tables?