The DEFECTPRODUCT table links the DEFECT table to the PRODUCT table.
|
If an index entry appears in multiple table columns, then it is a composite index. A composite index requires multiple columns in order to create a unique index. |
Field | Datatype (Length) | Allow Nulls | Indexes | Relationship | Related Table and Field |
---|---|---|---|---|---|
DEFECTPRODUCT (PK) |
STANDARDID(12) |
NOT NULL |
DEFECTPRODUCT_DEFECTPRODUCTID_PK (CA) |
|
|
DEFECTID (FK) |
STANDARDID(12) |
NOT NULL |
DEFECTPRODUCT_DEFECTID (AK) |
(Many) to (One) |
|
PRODUCTID (FK) |
STANDARDID(12) |
NOT NULL |
DEFECTPRODUCT_DEFECTID (AK) |
(Many) to (One) |
|
MODIFYUSER (FK) |
char(12) |
NULLS |
|
(Many) to (One) |
|
MODIFYDATE |
datetime(8) |
NULLS |
|
(Many) to (One) |
|
CREATEUSER (FK) |
char(12) |
NULLS |
|
|
|
CREATEDATE |
datetime(8) |
NULLS |
|
|
|