CuriousGeo
Registered User.
- Local time
- Today, 14:55
- Joined
- Oct 15, 2012
- Messages
- 59
I am in the process of making a database to track performance of resident doctors in training in a pathology lab. So far, I have a table that includes cases (basically: Accession number, date rec'd, specimen source, and diagnosis) They are to look at each case and give their diagnosis. To grade performance, a doctor will render a final diagnosis to complete the case. What I want to do is compare the final diagnosis to the resident diagnosis. From there we can grade "step" discrepancies. A step is 1 level above or below a diagnostic category. So if resident diagnosis is negative, and the final is atypical=1 step difference; negative vs. suspicious=2 steps, negative vs. malignant=3 steps and so on.
My question is in setting up the table (or a new table) to input the final doctor's diagnosis. Do I put that in the same table, or do a make a separate table and join them?
In reading about relationships and normal database structure, I'm questioning whether to put it in same table or different table. The common denominator is the Case (Accession #). Another question is, I have a look-up table containing the diagnosis. If I have 2 separate tables, can I use that same diagnosis table as the look-up for 2 separate tables that I want to compare?
Thank you for any input.
My question is in setting up the table (or a new table) to input the final doctor's diagnosis. Do I put that in the same table, or do a make a separate table and join them?
In reading about relationships and normal database structure, I'm questioning whether to put it in same table or different table. The common denominator is the Case (Accession #). Another question is, I have a look-up table containing the diagnosis. If I have 2 separate tables, can I use that same diagnosis table as the look-up for 2 separate tables that I want to compare?
Thank you for any input.
Resident Diagnosis | Case (common to both diagnosis) | Final (Official) Diagnosis |
(Compare w/ Final) | Accession # | (Compare w/ Resident) |
Unsatisfactory | Rec'd Date | Unsatisfactory |
Negative | Specimen Source | Negative |
Atypical | Atypical | |
Other type (Neoplastic) | Other type (Neoplastic) | |
Suspicious | Suspicious | |
Positive | Positive |