This is an old revision of the document!
DATABASE
Entities and Attributes
- 1. Disease
- DiseaseID (Primary Key)
- DiseaseName
- Description
- Symptoms
- Causes
- TreatmentMethods
- Prognosis
- 2. Anatomy
- AnatomyID (Primary Key)
- AnatomyName
- Description
- Location
- Function
- RelatedDiseases
- 3. Investigation
- InvestigationID (Primary Key)
- InvestigationName
- Description
- Purpose
- Procedure
- ResultsInterpretation
- RelatedDiseases
- RelatedAnatomy
- 4. Drug
- DrugID (Primary Key)
- DrugName
- GenericName
- ChemicalFormula
- Dosage
- SideEffects
- Indications
- Contraindications
- RelatedDiseases
- 5. Technique
- TechniqueID (Primary Key)
- TechniqueName
- Description
- Purpose
- Procedure
- RelatedDiseases
- RelatedAnatomy
Relationships Between Entities:
- Disease-Drug: Many-to-Many (A disease can be treated by multiple drugs, and a drug can treat multiple diseases)
Discussion