Problem inserting in two different tables [closed]
- by imvarunkmr
I have written an insert statement which inserts a record into Table1.
Table1 has a column "ID" which is an auto_increment(Identity) primary key.
How can I fetch the newly generated "ID" and as I need to Insert this value as foreign key in Table2?
Note : I have written INSERT statement in a stored procedure and I am calling this procedure using C#
Alternative suggestions to link both tables are also welcomed :)