在两个不同数据库中的表之间连接?

2022-01-30 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.

相关文章