Hi, I am planning a test request, process and report system. It goes like this, a customer requests a set of tests to be carried out on a particular item; the tests may be medical or mechanical or anything else. The point is each request is given a job number and each job number may contain a request for many tests.
Instead of a table containing many entries of job numbers
ie.
job 001 test1 result
job 001 test2 result
job 001 test3 result
job 001 test4 result
job 001 test5 result
job 001 test6 result
......etc
job 002 test1 result
job 002 test2 result
....etc
would I be better of generating a new results table for each job.
ie.
Table job001
=============
test1 result
test2 reult
etc
I am thinking that each job having its own table is maybe easier to archive or delete a complete job record etc
Also possible to email out a link to a particular job table if required by the customer!
Thanks for looking.
Instead of a table containing many entries of job numbers
ie.
job 001 test1 result
job 001 test2 result
job 001 test3 result
job 001 test4 result
job 001 test5 result
job 001 test6 result
......etc
job 002 test1 result
job 002 test2 result
....etc
would I be better of generating a new results table for each job.
ie.
Table job001
=============
test1 result
test2 reult
etc
I am thinking that each job having its own table is maybe easier to archive or delete a complete job record etc
Also possible to email out a link to a particular job table if required by the customer!
Thanks for looking.
Comment