gpt4 book ai didi

sql - sql链接服务器联接查询

转载 作者:行者123 更新时间:2023-12-04 22:46:57 24 4
gpt4 key购买 nike

在将本地数据库与链接服务器中的数据库联接在一起时,在运行任何查询时遇到问题。

我的查询:

SELECT 

[LocalDatabase].[dbo].[Record].[Project_ID],
[LinkedServer].[Reporting].[dbo].[Active].[Name]

FROM [LocalDatabase].[dbo].[Record] inner join
[LinkedServer].[Reporting].[dbo].[Active] ON
[LocalDatabase].[dbo].[Record].[Project_ID] = [LinkedServer].[Reporting].[dbo].[Active].[Delivery_Number]

错误:
Msg 4104, Level 16, State 1, Line 9
The multi-part identifier "LinkedServer.Reporting.dbo.Active.Delivery_Number" could not be bound.
Msg 4104, Level 16, State 1, Line 5
The multi-part identifier "LinkedServer.Reporting.dbo.Active.Name" could not be bound.

我猜我的语法不正确,但无法修复。
有人可以提出解决方案吗?

如果有更好的解决方案可以在不同服务器上的2个数据库上运行选择查询,请提出。

最佳答案

尝试使用表别名编写此代码:

SELECT r.[Project_ID], a.[Name]
FROM [LocalDatabase].[dbo].[Record] r inner join
[LinkedServer].[Reporting].[dbo].[Active] a
ON r.[Project_ID] = a.[Delivery_Number];

关于sql - sql链接服务器联接查询,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21137592/

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