general structure of a database

L

leaf

Hello,

Thank you for your replys on this topic. I understand
that I probably did not explain myself well.

There are 200 patients who will take 3 different medical
tests to measure same disease information. We have 3
readers (resident, physician, or expert) do each test on
same patient so that their results can be compared.

I created a form with a field called readertype that is a
draw down menu for choices of reader 1, 2 and 3. I also
have a field called testtype that is a draw down menu for
choices of test types such as MRI or XRay. Of course, I
have two tables here: tblreadertype tbltesttype for the
choice fields. I have then many variables to measure the
disease. All the measure questions are the same for each
test.

The structure of this database is that each table will
have a patient id entered 9 times. Although the
combination of patient id, testype and readertype will be
unique, the patient id will not be unique. It is easy to
make mistakes for data entry people to enter the data when
they can select the reader type and test type. So, for
data entry purposes, I think it is better to construct 9
distinct tables and forms. The variables in all the
tables should be the same with one variable to distinguish
test type and reader type. Is this correct?

Since I am new to ACCESS, I would like your confirmation
on this. I also want to know if I should use different
disease variables for each table so that R1M_LAD will
refer to Reader1 MRI test results.

I very much appreciate your response.

leaf
 
P

PC Datasheet

TblPatient
PatientID
FName
LName
Etc

TblMedicalTests
MedicalTestID
TestName

TblReaderType
ReaderTypeID
ReaderType 'resident, physicla and expert

TblReader
ReaderID
ReaderTypeID
FName
LName
etc

TblPatientTest
PatientTestID
PatientID
MedicalTestID
ReaderID
PatientTestResult


--
PC Datasheet
A Resource for Access, Excel and Word Applications
(e-mail address removed)
www.pcdatasheet.com

· Design and basic development for new applications
· Additions, Modifications and "Fixes" for existing applications
· Mentoring for do-it-yourselfers who want guidance
· Complete application design and development
· Applications Using Palm Pilot To Collect Data And
Synchronize The Data Back To Access Or Excel
 
L

leaf

Thank you for the reply, but you did not answer my
questions.

My first question is if you construct one main table
TblPatientTest with built in tables for reader type and
test type, will it be more difficult to enter data and
output data? Because data entry people enter the same
patient id with totally different test results from a
different test type with just one switch choice. It seems
it will be much easier to enter data to a specific form
such as MRITestReader1interpretation and finish that, then
open another form such as MRITestReader2Interpretation and
so on.
My second question is that whether we want to
differentiate variables name for different tables or forms
such as the two forms I mentioned
above "MRIReader1Interpretation."

By the way, we do not record patient names or addresses.
There is only one id associated with a patient and nothing
else.

leaf
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top