vote up 2 vote down star

This database will store a list of children. But the problem is, they will have their weight measured once a day. How can I store the changes so I can easily query their actual weight and the weight variation over one day, one week and one month?

flag
Do you want efficiently to store data only when there is a change? – lakshmanaraj Dec 17 '08 at 4:39

6 Answers

vote up 4 vote down check

I'd think something like the following:

table kid
    int pkey(id)
    text name

table weight
    date when
    int kidid fkey(kid.id)
    int weight
    int pkey(id)
link|flag
To add: The primary key of weight is (when, kidid). – Apocalisp Dec 17 '08 at 4:57
good point @apocalisp – warren Dec 17 '08 at 20:01
vote up 2 vote down

You need an one to many relationship between a 'child' table and a 'weight' table.

Child Table
-----------
ID (Generated) (PK)
Name 


WeightTable
-----------
ID (Generated) (PK)
Date
Weight
ChildID (FK)

It's late here, and I think I'm making it more complicated than I need to; and I'm reasonably sure you could just do a One-To-Many between Child and Weight. Every time you weigh the child, make a new entry.

link|flag
vote up 1 vote down

You might also want to setup a few views (basically stored select operations) that show only the current weight, and or views for other common queries, thus isolating implementation from the users.

Now if this were me, and I had a huge amount of children to keep track of, I'd probably keep a cache table with results for frequent queries, but it's probably an overkill.

link|flag
vote up 0 vote down

Two tables. The first, say children, should have an id column and information about each child like name, age, etc. The second should be called something like childrenweights. Each row contains three things. The id of the child from the children table, the weight, and the time the measurement was taken. Then you can use sql to query the children_weights table to select a range of weights for a child, say starting at January 1st and ending at January 8th and do whatever with them. Or you can even have the sql query return just the average or sum of that.

link|flag
vote up 0 vote down

Child Table

ID (Generated) (PK)

text Name

float InitialWeight

WeightTable

ID (Generated) (PK)

date Date

float ChangeInWeight

ChildID (FK Child.ID)


Store only when ChangeInWeight <> 0.

Query Sum(ChangeInWeight) with date range from WeightTable relationship to find variation and Query IntitalWeight + Variation as above to Actualweight.

link|flag
float is usually a poor choice for numeric data as it is an estimated value. Depending on the accuracy level of the weight mesaurment, int or decimal would be a better choice. – HLGEM Dec 19 '08 at 16:02
vote up 0 vote down

i want to design a data base file that includes some information about some computers's lab. eg.: number name type models components date of using then some information about storing and retriving these components please help me

>

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.