I have two tables
Employee---->Id(identity),FN,LN,Address
EmpContact--->Id(identity),Empid(Above table identity value),ContactType,ContactNumber
How to write two tables insert statements in single stored procedure. The second table "EmpContact" needs the resulted Identity ID from insertion in the first table "Employee"