I'm really new to all this, and I had a question about how I should setup my tables.
I have a large amount of data that I have split into three categories.
Etch Data
Pollish Data
Test Data
Each Roll that comes of our lines has a Roll Number. Each Roll has data from those 3 categories. The user should be able to enter data for each category independantly. I made four tables tblRolls, tblEtchdata, tblPollishData, and tblTestData.
Each table has a field called RollNumber which is each table's primary key. If I create a new record in tblRolls, I want to create a new record in the other 3 tables with the rollnumber filled in. I was wondering how to do that and if the way I have my tables organized is the best way.
tblRolls
-- RollNumber
tblEtchData
-- RollNumber
-- 5 other etch fields
tblPollishData
-- RollNumber
-- 5 other pollish fields
tblTest Data
-- RollNumber
-- 5 other test fields
Help.. Thanks.
I have a large amount of data that I have split into three categories.
Etch Data
Pollish Data
Test Data
Each Roll that comes of our lines has a Roll Number. Each Roll has data from those 3 categories. The user should be able to enter data for each category independantly. I made four tables tblRolls, tblEtchdata, tblPollishData, and tblTestData.
Each table has a field called RollNumber which is each table's primary key. If I create a new record in tblRolls, I want to create a new record in the other 3 tables with the rollnumber filled in. I was wondering how to do that and if the way I have my tables organized is the best way.
tblRolls
-- RollNumber
tblEtchData
-- RollNumber
-- 5 other etch fields
tblPollishData
-- RollNumber
-- 5 other pollish fields
tblTest Data
-- RollNumber
-- 5 other test fields
Help.. Thanks.