篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了sql MS SQL OpenRowSet和OpenDataSource示例相关的知识,希望对你有一定的参考价值。
-- OpenRowSet
SELECT a.*
FROM OpenRowSet ('SQLNCLI',
'Server= ServerName;Trusted_Connection=yes;',
'SELECT GroupName, Name, DepartmentID
FROM AdventureWorks2014.HumanResources.Department
ORDER BY GroupName, Name') AS a;
GO
-- OpenDataSource
SELECT * FROM
OpenDataSource('SQLOLEDB',
'Data Source=ServerName;Trusted_Connection=yes;')
.AdventureWorks2014.Production.Product
以上是关于sql MS SQL OpenRowSet和OpenDataSource示例的主要内容,如果未能解决你的问题,请参考以下文章