微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

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.jb51.cc/mssql/84618.html

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐