Question : Insert records into SQL table from Select Statement

Please see my code below.. I want to insert all the records from my subquery into the table.. How do I do this? There are a lot of fields.. Like 20 or something so I'm trying to avoid having to list all of the fields out..
1:
2:
3:
Insert INTO CTS.CORE.tblStatusTracking
 ( Select * from CTS.CORE.tblStatusTracking st
	join ##tblCon2 cc on st.nStatusTrackingID = cc.nStatusTrackingID)

Answer : Insert records into SQL table from Select Statement

you don't need to specify the braces..Its just

Insert into TableName
SELECT * From TableName ......
Random Solutions  
 
programming4us programming4us