For example, assuming that table A
is in database example
and table B
is in database postgres
, how to perform the following query on the two tables?:
SELECT
A.date,
A.name,
B.date,
B.name
FROM A
INNER JOIN B ON A.name = B.name;
For example, assuming that table A
is in database example
and table B
is in database postgres
, how to perform the following query on the two tables?:
SELECT
A.date,
A.name,
B.date,
B.name
FROM A
INNER JOIN B ON A.name = B.name;