第一種方法:
復(fù)制代碼 代碼如下:
/* 創(chuàng)建鏈接服務(wù)器 */
exec sp_addlinkedserver 'srv_lnk','','sqloledb','條碼數(shù)據(jù)庫(kù)IP地址'
exec sp_addlinkedsrvlogin 'srv_lnk','false',null,'用戶名','密碼'
go
/* 查詢示例 */
SELECT A.ListCode
FROM srv_lnk.條碼數(shù)據(jù)庫(kù)名.dbo.ME_ListCode A, IM_BarLend B
WHERE A.ListCode=B.ListCode
go
/* 刪除鏈接服務(wù)器 */
exec sp_dropserver 'srv_lnk','droplogins'
第二種方法:
復(fù)制代碼 代碼如下:
exec sp_configure 'show advanced options',1
reconfigure
exec sp_configure 'Ad Hoc Distributed Queries',1
reconfigure
go
select * from Product p inner join
opendatasource('SQLOLEDB','Data Source=Macaco-Online;user ID=sa;password=sa密碼;').Company.dbo.Product p2
on P.PID=p2.PID
go
exec sp_configure 'Ad Hoc Distributed Queries',0
reconfigure
exec sp_configure 'show advanced options',0
reconfigure
go
您可能感興趣的文章:- SQL重復(fù)記錄查詢 查詢多個(gè)字段、多表查詢、刪除重復(fù)記錄的方法
- thinkphp中多表查詢中防止數(shù)據(jù)重復(fù)的sql語(yǔ)句(必看)
- SQL Server多表查詢優(yōu)化方案集錦
- MySQL左聯(lián)多表查詢where條件寫(xiě)法示例
- MySQL 多表查詢實(shí)現(xiàn)分析
- 一個(gè)多表查詢的SQL語(yǔ)句
- OraclePL/SQL單行函數(shù)和組函數(shù)詳解
- Orancle的SQL語(yǔ)句之多表查詢和組函數(shù)