哪位大虾有空帮我看看着题,我已经做好了,哪位有空可否帮我修改修改,
因为是在WORD里画的,贴不上来,
如果有意的话,可否加QQ 569383134
我用QQ传,大家来帮帮忙不难的,我才刚入门。。Develop a conceptual model (ERD) from the following schema. Primary keys are underlined for each relation. Following business rules apply.· Patients visit doctors and are prescribed medications.
· A patient can be prescribed medication by many doctors and doctors prescribe medication to many patients.
· Same medication can be prescribed by different doctors to patients.
· Patients may have medical insurance which may support financial costs regarding medication. We only store insurance company name for the patient.Patient (patientId, birthDate, bloodType, firstName, surname, insuranceId)
Prescribe (patientId, doctorId, medicationId, datePrescribed, dose, interval)
Doctor (doctorId, firstName, surname, phoneNumber) 
Medication (medicationId, medicationName, manufacturer)
Insurance (insuranceId, companyName)Your model should depict the relationships, direction and name of relationship, cardinalities (0,1 or many) along with entities and attributes.
State any additional assumptions that you made while developing the data model.