A
Angela
I am trying to build a database to store various
measurements of plants, done over a period of time.
I have a table for the plants, which specifies the
location of each plant and its identity.
PlantID, Rep, Row, Column, PlantName
The plants will be measured at various intervals, and what
will be measured will not always be the same. For
example, the first assessment may just be a survival
(yes/no). The second assessment may be a height and a
condition code. The third may be height, condition, and
damage. I don't know ahead of time what the variables
will be.
I think that I should have two additional tables; one for
the measurements, and another for the actual values.
Measurements table
measurementID
measurement description
Assessments table
PlantID
MeasurementID
Assessment Date
Value
This would be normalized, but it seems awkward. The value
column will have integers, numbers with decimals, text,
etc.;quite a mix. I guess I'd have to make it a text
column, but then how can I do any statistical analysis on
say the height measurements?
Is this the way to design it?
Angela
measurements of plants, done over a period of time.
I have a table for the plants, which specifies the
location of each plant and its identity.
PlantID, Rep, Row, Column, PlantName
The plants will be measured at various intervals, and what
will be measured will not always be the same. For
example, the first assessment may just be a survival
(yes/no). The second assessment may be a height and a
condition code. The third may be height, condition, and
damage. I don't know ahead of time what the variables
will be.
I think that I should have two additional tables; one for
the measurements, and another for the actual values.
Measurements table
measurementID
measurement description
Assessments table
PlantID
MeasurementID
Assessment Date
Value
This would be normalized, but it seems awkward. The value
column will have integers, numbers with decimals, text,
etc.;quite a mix. I guess I'd have to make it a text
column, but then how can I do any statistical analysis on
say the height measurements?
Is this the way to design it?
Angela