所以我需要尝试在一个 SQL 语句中使用两个不同的服务器。到目前为止,这是我的查询:
SELECT p.FirstField
from [FirstDatabase]..FirstTableName p
Where not exists (select p2.SecondField
from [SecondServer].[SecondDatabase]..SecondTableName p2
where p.FirstField = p2.SecondField)
我没有在语句的第一部分使用第一个服务器,因为该服务器已经被选中。
我正在使用 Microsoft SQL Server