循环遍历临时表并插入另一个表

时间:2012-06-13 12:14:59

标签: sql sql-server sql-server-2008

我需要将csv文件中的数据插入到临时表中,并在另一个表中插入相应id值的一些数据。我已经创建了数据并将其插入到csv文件中。对于csv文件中的所有记录,我如何遍历并插入另一个表中相应记录的圆顶数据。

CREATE TABLE #tbcompanies
(ID INT)
GO

BULK
INSERT #tbcompanies
FROM 'd:\ids.csv'
WITH
(
ROWTERMINATOR = '\n'
)

select * from #tbcompanies

drop table #tbcompanies

3 个答案:

答案 0 :(得分:6)

假设两个表都有一个ID列,您可以更新另一个表,如:

update  ot
set     col1 = tmp.col1
.       col2 = tmp.col2
from    @tbcompanies tmp
join    OtherTable ot
on      ot.ID = tmp.ID

如果除了更新之外,您还想要insert不存在的行,请考虑merge statement

; merge OtherTable as target
using   #tmpcompanies as source
on      target.id = source.id 
when    not matched by target then
        insert (id, col1, col2) values (source.id, source.col1, source.col2)
when    matched then
        update set col1 = source.col1, col2 = source.col2;

答案 1 :(得分:1)

您不需要循环任何内容,因为您使用的是SQL Server 2008,并且此版本支持MERGE语句。

看看here

或者只使用带子句的update并加入两个表。

答案 2 :(得分:1)

如果它是您需要的upsert功能,我强烈推荐Merge功能。

伪代码

   merge TargetTableName target
   using #tbcompanies tmp on tmp.idfield=target.idfield
   when matched then update......
   when not matched then insert...........