目前,我正在插入到表具有以下前綴也manaully設置我想要什麼,在過去2列(1,GETDATE())選擇*在INSERT語句中
Insert into [Table1]
select col1,col2,col3, 1,getdate()
from [table2]
問題是存在的是列的負載,並導致在SP的混亂。
我試圖重寫語句...
Insert Into [table1]
Select * from [Table2]
但我也需要考慮到我想手動寫入這2列..
是否有辦法這樣做?
非常感謝
的可能的複製[?INSERT INTO SELECT \ *爲SQL Server,不可能,我是正確](http://stackoverflow.com/questions/26886421/insert-into-select-for-sql-server-not-possible-am-i-correct) – mortb
向我們展示這兩個表的示例模式。 table1有兩個比table2多的列嗎? – GurV
'... select table2。*,1,getdate()...' – jarlh