I have two tables in SQL Server, Appointment
and AppointmentDetails
.
Appointment
table has two columns AppId
and CusId
.
AppointmentDetail
table has AppId
, ApDay
, Intime
, OutTime
, EmpId
.
Appointment
table has AppId
as its primary key, and it is set to auto increment.
AppointmentDetails
table has primary key on (AppId, ApDay)
.
My problem how get and insert the primary key of the Appointment
table to AppointmentDetails
table when I am inserting data into Appointment
table???