第一題PART2要我們寫出relational table
其中有一個relation同時reference到兩個來自同一個ISA之下的ENTITY
(entity是"patient" 跟 "doctor" ,relation是"operation")
那relation table要怎麼reference到這兩個entity的foreign key?
SSN INTEGER,
FOREIGN KEY(SSN) REFERENCE doctor,
FOREIGN KEY(SSN) REFERENCE pateint,
這樣好像有點怪?