supposing that I have two tables with same 3 columns: ID (int, identity), text (varchar), status (smallint)
By doing a query, how I can transfer the content of a row from Table_A from Table_B?
I.e.:
INSERT INTO TABLE_B VALUES (SELECT * FROM TABLE_A WHERE ID=1)
--THIS IS NOT FUNCTIONAL
Here's the catch: That row that was inserted into Table_B also needs to be deleted from Table_A
Thank you.