vote up 2 vote down star
2

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

flag

79% accept rate

6 Answers

vote up 9 vote down check

As long as there are no identity columns you can just

INSERT Table2
SELECT * FROM Table1
WHERE [Conditions]
link|flag
Be careful with this syntax as it won't work if Table2 has an identity column and it will break in the future if Table1 ever changes without Table2 changing in sync (burned me before). This solution might be perfect for your case, just be aware of these considerations. – Michael Haren Jul 31 at 12:00
vote up 0 vote down

It's just a mistake ^^

link|flag
vote up 5 vote down

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 Table2 (columnX, columnY) SELECT column1, column2 FROM Table1 WHERE [Conditions]

link|flag
@ScottStonehouse: if you collect all the other answers into this answer like you have done but with code (making it comprehensive), you'd definitely become the best answer. – Michael Haren Jul 31 at 12:01
vote up 2 vote down

"INSERT INTO DestTable SELECT * FROM SourceTable WHERE ..." works in SQL Server.

link|flag
vote up 7 vote down

Alternative syntax:

INSERT tbl (Col1, Col2, ..., Coln)
  SELECT Col1, Col2, ..., Coln)
  FROM Tbl2
  WHERE ...

The select query can (of course) include expressesions, case statements, constants/literals, etc.

link|flag
vote up 3 vote down

SELECT * INTO < new_table > FROM < existing_table > WHERE < clause >

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.