in reply to Re^2: Organizing and presenting a cross-reference
in thread Organizing and presenting a cross-reference
I think what you are searching for is database design or more specific database normalization.
Really you should probably put the product serial, price, anything else specific to that vendors offer on the product into a seperate table. Lets name it vendoroffer. Then have another table with the vendor, product, and vendoroffer keys having all your "cross-references" but none of the data. This is an example of normalization.
By keys I mean internally created numbers (i.e. autoincrement integers) that only have meaning in the database and not something like serial numbers.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: Organizing and presenting a cross-reference
by oko1 (Deacon) on Sep 24, 2008 at 13:47 UTC | |
by juster (Friar) on Sep 25, 2008 at 03:51 UTC | |
by oko1 (Deacon) on Sep 25, 2008 at 22:02 UTC |