I have two tables with the same column definitions. I need to move (not copy) a row from one table to another. Before I go off and use INSERT INTO/DELETE (in a transaction), is there a smarter way?
SQL Server 2005
|
I have two tables with the same column definitions. I need to move (not copy) a row from one table to another. Before I go off and use INSERT INTO/DELETE (in a transaction), is there a smarter way? SQL Server 2005 |
||||
|
|
|
for SQL Server 2005 and up, try the OUTPUT Clause (Transact-SQL) clause:
Working example:
OUTPUT:
|
|||||||||||||||
|
|
You can try Insert into abc (a,b,c) select(a,b,c) from def doing above so will insert column a, b,c of def into column a,b,c of abc. after inserting run a delete table, drop table or truncate whatever is your criteria. sample is:
|
|||
|
|
|
There is no such thing as a MOVE command in SQL. You'll have to first insert from table 1 to table 2 Then remove the copy from table 1. |
|||||
|
|
No, you are pretty much stuck with insert and delete wrapped inside a transaction |
|||||
|