T-SQL插入表,而不必指定每一列

前端之家收集整理的这篇文章主要介绍了T-SQL插入表,而不必指定每一列前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
在我们的数据库中有一个有80多个列的表。它有一个主键,Identity插入开启。我正在寻找一种方法来插入到这个表的每一列EXCEPT主键列从不同的数据库中的相同的表。

这可能吗?

解决方法

你可以很容易地做到这一点:
-- Select everything into temp table
Select * Into 
    #tmpBigTable
    From [YourBigTable]

-- Drop the Primary Key Column from the temp table  
Alter Table #tmpBigTable Drop Column [PrimaryKeyColumn]

-- Insert that into your other big table
Insert Into [YourOtherBigTable]
    Select * From #tmpBigTable

-- Drop the temp table you created
Drop Table #tmpBigTable

如果您在“YourOtherBigTable”中有Identity In On,并且列完全相同,那么你会没事的。

原文链接:https://www.f2er.com/mssql/84618.html

猜你在找的MsSQL相关文章