我具有以下数据库结构,并且想要添加一个称为记事本的新表:
ClinicTable(Id PK)
PatientTable(Id PK,ClinicId PK FK)
DoctorTable(Id PK,ClinicId PK FK)
ConsultationTable(Id PK,ClinicId PK FK,PatientIdId FK,DoctorId FK)
我该如何确定关系是可识别的还是不可识别的?
所有其他表格中都有诊所编号,但是我看不到我需要吗?
我认为它应该如下所示...
如果笔记与患者有关,那么我有:
NotepadTable(Id PK,PatientIdId PK FK,DoctorId PK FK)
如果注释与咨询有关,那么我有:
NotepadTable(标识PK,咨询标识PK FK)