Hello,

Can someone tell me how one would join tables across different databases, the databases being in the same instance.

select <field> from database1.table 1 a, database2.table 1 b
where a.key=b.key

does not seem to work

rajavale