Good evening Titans of programming I have a problem, I'm trying to make a selection between two different databases that are on the same server, this is the query I do:
SELECT A.nodo,
B.nodo
FROM camper.public.camper1 A
INNER JOIN camper_tmp.public.campi2c B
ON A.nodo= B.nodo
and this is the result:
SQL error:
ERROR: cross-database references are not implemented: "camper_tmp.public.campi2c" LINE 4: INNER JOIN camper_tmp.public.campi2c B
What am I doing wrong, or how can I make that select between two different databases in postgres, thanks in advance.