I've one problem regarding manage information from two different Postgres servers.
- In the one server I've one table
a
containingid bigserial
andphone varchar(200)
- On the other server I've table
b
that containsid bigserial
andtell varchar(200)
Is there a way that I can compare witch rows from table a
are present in the rows of table b
, comparing by phone
= tell
?