我在 DB1 中有一个调用 FILLTABLE 的过程,该过程控制 DB1.table1 中的插入,并且我在 DB2.table1 中有所有数据,所以基本上我需要通过来自 BD2.table1 的过程 FILLTABLE 填充 DB1.table1 但过滤数据 DB2.table1
例如:
Execute BD1.dbo.FILLTABLE (
select db2.dbo.table1.name as @name,
db2.dbo.table1.phonea s @phone
from table1
where citycode = 'ca')