I'm working on a db to track testing that needs to be done on a quarterly basis for about 15,000 line items. Ultimately, I'd like to run a query that would tell me which items where the testing is due or overdue.
I was thinking of a junction table, called tbl Results set up as follows:
id
rimary key
id Item:foreign key
date of test: lookup from test date table
result
This setup would not tell me what is due or overdue. I didn't want to add a bunch of test dates to the big "test" table because it doesn't seem to be good design, but I'm having trouble coming up with another way. Any suggestions? I've looked, but I haven't found any similar questions, but I may not be searching the right phrases!
Thanks,
Mary
I was thinking of a junction table, called tbl Results set up as follows:
id
id Item:foreign key
date of test: lookup from test date table
result
This setup would not tell me what is due or overdue. I didn't want to add a bunch of test dates to the big "test" table because it doesn't seem to be good design, but I'm having trouble coming up with another way. Any suggestions? I've looked, but I haven't found any similar questions, but I may not be searching the right phrases!
Thanks,
Mary