T-SQL Delete Inserted Records
问题 I know the title may seem strange but this is what I want to do: I have table with many records. I want to get some of this records and insert them in other table. Something like this: INSERT INTO TableNew SELECT * FROM TableOld WHERE ... The tricky part is that I want this rows that I have inserted to be deleted form the origin table as well. Is there a easy way to do this, because the only think that I have managed to do is to use a temporary table for saving the selected records and then