-- Newly inserted rows and identity values:select * from #new;
-- #new can be used now to insert into a related table:drop table #new, itest;go