gpt4 book ai didi

用于连接两个服务器中不同数据库的两个表的 sql 查询

转载 作者:行者123 更新时间:2023-12-04 06:43:44 27 4
gpt4 key购买 nike

我在ServerS上的databaseS中有两个表tableA,在ServerB上的databaseS中有两个tableB。
我只想根据它的公共(public)字段名对这些表执行全外连接

最佳答案

在 SQL Server 中,您可以创建链接服务器(在 Management Studio 中,位于服务器对象下。)然后您可以使用四部分名称来连接表:

select  *
from localdb.dbo.localtable as t1
full outer join
linkedserver.remotedb.dbo.remotetable as t2
on t1.col1 = t2.col1

如果您使用的是另一个数据库,请编辑您的问题以说明是哪个。

关于用于连接两个服务器中不同数据库的两个表的 sql 查询,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3949181/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com