D
DawnTreader
hello
i have a very specific need to have only 3 records in my "block serial"
table to be related to one record in my "product serial" table.
the company i work for makes a product where the compressor products that we
manufacture have upto 3 blocks in them. there is information that we relate
through the blocks to the compressor, but each block has individual
information.
i want to limit how many blocks can be given the same product ID number.
tblProduct
ProductID - Primary Key - Autonumber field
ProductSerial - Number given to compressor - Manual text field
tblBlockList
ProductID - Foreign Key - Number field
BlockID - Primary Key - Autonumber field
BlockSerial - Number given to block - Manual text field.
tblProduct.ProductID 1 --> Many tblBlockList.ProductID
thats the structure of the relationship, now how do you tell it to only
allow for 3 blocks on the many side?
i have a very specific need to have only 3 records in my "block serial"
table to be related to one record in my "product serial" table.
the company i work for makes a product where the compressor products that we
manufacture have upto 3 blocks in them. there is information that we relate
through the blocks to the compressor, but each block has individual
information.
i want to limit how many blocks can be given the same product ID number.
tblProduct
ProductID - Primary Key - Autonumber field
ProductSerial - Number given to compressor - Manual text field
tblBlockList
ProductID - Foreign Key - Number field
BlockID - Primary Key - Autonumber field
BlockSerial - Number given to block - Manual text field.
tblProduct.ProductID 1 --> Many tblBlockList.ProductID
thats the structure of the relationship, now how do you tell it to only
allow for 3 blocks on the many side?