I have two tables emplyoee (first table)id primary key auto incrementemp_name varcharstudent(second table)id foriegnkey emplyoee.idst_name varchari want to insert multiple student records for a single employe id . My code is attached here , but this use to only one student record update.how can i write stored procedure for this need.i am new with SQL server and stored procedure , could you please help me.Hide Copy Code
create procedure empst_Sp @emp_name varchar(50), @st_name varchar(50) as begin insert into emplyoee (emp_name) values (@emp_name) insert into student(id,st_name) values(SCOPE_IDENTITY(),@st_name) end