D
Douglas J. Steele
Sounds as though you may want to rethink your table design.
Having repeating fields like Worker1 and Worker2 is a sign that your
database hasn't been normalized. Instead, you should have a second table
containing the EncounterID, the WorkerID and the TypeOfWorker (where
TypeOfWorker would be "Primary" or "Secondary")
Having repeating fields like Worker1 and Worker2 is a sign that your
database hasn't been normalized. Instead, you should have a second table
containing the EncounterID, the WorkerID and the TypeOfWorker (where
TypeOfWorker would be "Primary" or "Secondary")