MySQL Forums
Forum List  »  MySQL Workbench

Re: Database design for scientific tests
Posted by: Al Lombardo
Date: June 24, 2009 12:00PM

Usually if you have a situation where you'll need 0.1 or more instances of data for each row, you should break it out into another table. So in essence, you would set up a table of all possible initial conditions (as a look up table) where pressure, temp etc. would be listed, then in another table (say initial_test_conditions) have a link between test and initial condition and add a value field for the condition. Initial_test_conditions would hold only those conditions that are important for that instance, not all possible combinations between initial conditions and test.

Options: ReplyQuote


Subject
Views
Written By
Posted
Re: Database design for scientific tests
1844
June 24, 2009 12:00PM


Sorry, you can't reply to this topic. It has been closed.

Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.