Answers:
是的,假设该帐户具有适当的权限,则可以使用:
SELECT <...>
FROM A.table1 t1 JOIN B.table2 t2 ON t2.column2 = t1.column1;
您只需要在表引用前面加上它所驻留的数据库的名称即可。
ERROR 1146 (42S02): Table 'currentdb.otherdb.tablename' doesn't exist
FROM A.table1 JOIN B.table2 ON B.table2 .column2 = A.table1.column1