我在 SQL Server 中有两个表,Appointment
并且AppointmentDetails
.
Appointment
表有两列AppId
和CusId
。
AppointmentDetail
表有AppId
, ApDay
, Intime
, OutTime
, EmpId
.
Appointment
表AppId
作为它的主键,它被设置为自动递增。
AppointmentDetails
表有主键(AppId, ApDay)
。
当我将数据插入表时,我的问题是如何获取Appointment
表的主键并将其插入到表中???AppointmentDetails
Appointment