M
Mary
Hi,
I have tableA which includes columnA (int) with a product code: 1,2,3 etc.
(1=red, 2=blue, etc.).
Then I have columnB (int) with a product number, 1000, 1001, etc.
The combination of code and type cannot be duplicated,
ex.:
1/1000, 1/1001, 1/1002 is ok.
2/1000, 2/2001, 2/2002 is ok
but
1/1000 and 1/1000 or 2/1001 and 2/1001 is not ok since the product number is
being duplicated having the same code.
Q: How do I go from preventing the duplication of the relation of
code/product?
I would appreciate some assistance.
Mary
I have tableA which includes columnA (int) with a product code: 1,2,3 etc.
(1=red, 2=blue, etc.).
Then I have columnB (int) with a product number, 1000, 1001, etc.
The combination of code and type cannot be duplicated,
ex.:
1/1000, 1/1001, 1/1002 is ok.
2/1000, 2/2001, 2/2002 is ok
but
1/1000 and 1/1000 or 2/1001 and 2/1001 is not ok since the product number is
being duplicated having the same code.
Q: How do I go from preventing the duplication of the relation of
code/product?
I would appreciate some assistance.
Mary