I have two tables table A and table B.
I insert values in both table like this:
Insert Into A (Col1, Col2) Values ("1" "ABC")
Insert Into B (Col1, Col2) Values ("1" "ABC")
but, I want to perform this operation using single insert statement.
I used Microsoft SQL Server Management Studio 2008 R2
for this.
Can anyone please tell me is it possible?
Thanks...!!!