How I can join between the other database's tables? - Mailing list pgsql-general

From Ioseph Kim
Subject How I can join between the other database's tables?
Date
Msg-id 20001227001556.A32555@paolo.net
Whole thread Raw
Responses Re: How I can join between the other database's tables?  (Anand Raman <araman@india-today.com>)
List 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 by date:

Previous
From: Uro¹ Gruber
Date:
Subject: RETURN multiple columns in FUNCTION
Next
From: Anand Raman
Date:
Subject: Re: How I can join between the other database's tables?