Ok im still not quite getting it... My tables are currently:
CustomerTable
----CustomerId (int, key identifier)
----Address
----CustomerName
ProductTable
-----ProductId (int, key, identifier)
------ProductNumber
------ProductDescript
PoTable
----PoId (int, key, identifier)
----PoNumber
So I should make a new table and have them layed out like what? My issue is when a single customer has several different items one one PO. should there be seperate records for this such as:
po 123, customer a, product abc
po 123, customer a, product xyz
po 321. customer b, product abc
po 321, customer b, product bcd
and so on?
I would have thought that there has to be a better way to do this, i cant think of how though.