Вот здесь можете все прочитать, очень понятно написано. Если будут вопросы пишите мне буду рад помогать. Вот ссылка "stackoverflow.com/questions/3712678/how-can-i-insert-data-into-two-tables-simultaneously-in-sql-server"
erge into [table1] as t
using [external_table] as s
on 1=0 --modify this predicate as necessary
when not matched then insert (data)
values (s.[col1])
output inserted.id, s.[col2] into [table2]
;
|