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

From: Ioseph Kim <ioseph(at)paolo(dot)net>
To: pgsql-general(at)postgresql(dot)org
Subject: How I can join between the other database's tables?
Date: 2000-12-26 15:15:56
Message-ID: 20001227001556.A32555@paolo.net
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: 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?

Responses

Browse pgsql-general by date

  From Date Subject
Next Message Anand Raman 2000-12-26 15:54:37 Re: How I can join between the other database's tables?
Previous Message T. Dekany 2000-12-26 15:15:01 how to show foreign keys of a table