P
PieterLinden
I am working on a database that, among other things, will be used to
record Chemistry Lab Values (it's for Cancer Treatment).
The structure of the table is like this:
CREATE TABLE PatientLabs(
Cycle INTEGER,
PatientID LONG INTEGER,
Lab TEXT(50),
Normal BOOLEAN,
ClinicallySignificant BOOLEAN,
Comment MEMO,
PRIMARY KEY(Cycle, PatientID, Lab));
The lab tests are fixed - there are about 20 of them. The form based
on this table would be a subform inside of the Patient form (if it
matters). The catch is that if I do this, I can't make any columns
required except the PK... or am I missing something? Maybe I should
figure out how At Your Survey does validation? Is that it? (sorry,
thinking out loud a little...)
is there a way that's staring me in the face that I can't see? Any
pointers/thoughts greatly appreciated!
Thanks!
Pieter
record Chemistry Lab Values (it's for Cancer Treatment).
The structure of the table is like this:
CREATE TABLE PatientLabs(
Cycle INTEGER,
PatientID LONG INTEGER,
Lab TEXT(50),
Normal BOOLEAN,
ClinicallySignificant BOOLEAN,
Comment MEMO,
PRIMARY KEY(Cycle, PatientID, Lab));
The lab tests are fixed - there are about 20 of them. The form based
on this table would be a subform inside of the Patient form (if it
matters). The catch is that if I do this, I can't make any columns
required except the PK... or am I missing something? Maybe I should
figure out how At Your Survey does validation? Is that it? (sorry,
thinking out loud a little...)
is there a way that's staring me in the face that I can't see? Any
pointers/thoughts greatly appreciated!
Thanks!
Pieter