Showing posts with label Insert value from one table to another in SQL Server. Show all posts
Showing posts with label Insert value from one table to another in SQL Server. Show all posts

Tuesday, April 14, 2015

Insert value from one table to another in SQL Server

Example

 INSERT INTO new_table (Col1, Col2, Col3, Coln)  
 SELECT Value1, Value2, Value3, Valuen
 FROM initial_table  
 -- optionally WHERE / JOINS ...