I'm not sure I understand your exact scenario, but to create a many-to-many relationship, you simply create a "relationship table", in which you store id's for the two records you want to link.
Example:
Products ******** ProductID (PK) Price Retailers ********* RetailerID (PK) Name ProductRetailerRelationships **************************** ProductID RetailerID
Tomas Lycken
2009-09-24 18:33:26