I have two identical tables and need to copy rows from table to another. What is the best way to do that? (I need to programmatically copy just a few rows, I don't need to use the bulk copy utility).
Thanks rp
|
I have two identical tables and need to copy rows from table to another. What is the best way to do that? (I need to programmatically copy just a few rows, I don't need to use the bulk copy utility). Thanks rp |
||||
|
|
|
As long as there are no identity columns you can just
|
|||||||||
|
|
Alternative syntax:
The select query can (of course) include expressions, case statements, constants/literals, etc. |
||||
|
|
|
Jarrett's answer creates a new table. Scott's answer inserts into an existing table with the same structure. You can also insert into a table with different structure:
|
|||||
|
|
"INSERT INTO DestTable SELECT * FROM SourceTable WHERE ..." works in SQL Server. |
|||
|
|
|
|||||||
|