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,并且列完全相同,那么你会没事的。

相关文章

SELECT a.*,b.dp_name,c.pa_name,fm_name=(CASE WHEN a.fm_n...
if not exists(select name from syscolumns where name=&am...
select a.*,pano=a.pa_no,b.pa_name,f.dp_name,e.fw_state_n...
要在 SQL Server 2019 中设置定时自动重启,可以使用 Window...
您收到的错误消息表明数据库 'EastRiver' 的...
首先我需要查询出需要使用SQL Server Profiler跟踪的数据库标...