--1调用存储过程
exec
存储过程名 参数
--2当表使用
select
a.*,b.*
from
tb b
inner
join
(
select
*
from
openrowset(
‘sqloledb‘
,
‘ip/server‘
;
‘sa‘
;
‘pwd‘
,
‘exec 库.dbo.存储过程‘
))a
on
a.条件=b.条件
时间: 2024-10-21 07:00:17
--1调用存储过程
exec
存储过程名 参数
--2当表使用
select
a.*,b.*
from
tb b
inner
join
(
select
*
from
openrowset(
‘sqloledb‘
,
‘ip/server‘
;
‘sa‘
;
‘pwd‘
,
‘exec 库.dbo.存储过程‘
))a
on
a.条件=b.条件