View Full Version : Can someone help me?


Johan
04-26-2001, 12:28 AM
In my table I would like some fields to contain more data,

Eg.


Product ID | Footprint
----------------------------
BC874 | RAD1
| RAD2
-----------------------------
Is that in any way possible

KevinM
04-26-2001, 12:42 AM
Create two tables and link them by ProductID

So...

Table1
[ProductID]
BC874

Table2
[ProductID], [FootPrint]
BC874, RAD1
BC874, RAD2

This is what's known as a 'one-to-many relationship'.

HTH