The topic may not make much sense, but I'll try to explain.
I'm guessing there is an easy way to do this properly, but I'm somewhat new to Mysql, and database design.
I am trying to replicate what is currently done on paper, but keep it as close to possible to shortcuts that are taken.
The paperwork is for recording volume of a proccessor (let's pretend beer). I need to record start time, end time, volume and destination tank, among other things. The destination tank is the problem.
They way things are done now, one row on paper normally refers to one dest. tank during one run. But one run can have mulitple destinations, with volumes attached. How do I represent this in a database? Example:
Start End Volume Tank
0600 0700 10000 1
No problem, but what about:
Start End Volume Tank
0600 0700 10000 1
---- ---- 5000 2
---- ---- 2000 3
I have some ides, but I felt I should ask the best way to represent this.