If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

 
Go Back  dBforums > General > Database Concepts & Design > Need some help with a design?

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1 (permalink)  
Old 08-03-04, 17:16
Leventcos21 Leventcos21 is offline
Registered User
 
Join Date: Aug 2004
Location: NY
Posts: 113
Question Need some help with a design?

I have a table called tbl_Main_Patient it includes:

tbl_Main_patient: PatID, LName, FName, MName, Sex, Address, etc.

I realize that a patient can have zero or more Medications and Medications can have zero or More Patients. M:M Am I better off including a MedicationID into the tbl_Main_Patient join to a table tbl_Med_info joined to a tbl_Med.

I have 6 more possibilities similar to Medications, such as, Diagonsis, Insurance, Studies, Equipment.

Would an alternative be to create a Patient_Detail table which has MedID, EquipmentID, PatientID, DiagID, joined by PatientID to the tbl_Main_Patient. Then the Patient_Detail will join to other relevant tables.

If anyone can be of assistance, I would be greatful.

THank youtbl_Main_Patient

Last edited by Leventcos21; 08-03-04 at 17:21. Reason: formatting
Reply With Quote
  #2 (permalink)  
Old 08-04-04, 03:04
pantaz pantaz is offline
Registered User
 
Join Date: Jul 2004
Location: So Cal
Posts: 14
Your "tbl_Main_Patient" looks essentially like a basic customer information table. A patient/customer will often have multiple visits, which may mean new and/or modified medications and procedures. Your idea for a "Patient_Detail" table is along the right track.

Try thinking of it more like a retail sales application. Instead of a "Patient_Detail", create a "Patient_Visit". Build it like a sales invoice: Cust_ID, Visit_ID, Date, Insurance, Medications, Procedures, etc.. Also, you may need to include medicine dosage instructions for each visit.
Reply With Quote
Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On