我想我们可以这样做database1.table1 join database2.table2 on
。即在同一台服务器上的不同数据库中加入表。
是否可以跨不同的 sql 服务器连接表?
问问题
4316 次
1 回答
3
您可以使用FEDERATED Storage Engine。
The FEDERATED storage engine lets you access data from a remote
MySQL database without using replication or cluster technology.
Querying a local FEDERATED table automatically pulls the data
from the remote (federated) tables. No data is stored on the local tables.
于 2013-06-24T06:32:14.930 回答