我有以下数据库:
test
table1
fields: id, password, name, lastname
test2
table2
fields: id
如何在test
中选择test2
和table1
id
test2.table2.id
位置?
答案 0 :(得分:2)
你试过吗?您只需编写数据库名称test2.dbo.tblFoo
,但您可能需要声明一个别名(只需在写完实际名称后写一个单词)。该帐户显然需要对两个数据库的权限。
答案 1 :(得分:0)
SELECT /* stuff */
FROM table1 t1
JOIN table2 t2 ON t1.id = t2.id
答案 2 :(得分:0)
我可以在ORM中使用某些功能,例如Hibernate Shards。