在两个不同数据库中的表之间加入?

2021-11-20 00:00:00 join sql mysql

在 MySQL 中,我有两个不同的数据库 -- 我们称它们为 A 和 B.

In MySQL, I have two different databases -- let's call them A and B.

是否可以在数据库A中的表与数据库B中的表之间执行连接?

Is it possible to perform a join between a table that is in database A, to a table that is in database B?

推荐答案

是的,假设该帐户具有您可以使用的适当权限:

Yes, assuming the account has appropriate permissions you can use:

SELECT <...>
FROM A.table1 t1 JOIN B.table2 t2 ON t2.column2 = t1.column1;

您只需要在表引用前面加上它所在的数据库的名称即可.

You just need to prefix the table reference with the name of the database it resides in.

相关文章