Hello!
I have two tables joined by PartSupID, the first table(Part) contains all info about the product Part#,supplierID,Name, currency etc and PartSupID (combination of Part# and supplier ID) as a primary key.
The second table(Price) contains the price information like POPrice, contract#, effective date. The tables are joind by PartSupId (foreign key in Price).
I want to create an append query to add new parts with the data for both tables.
Also I want to update the existing part # with new prices.
Can someone please give me some guidelines how to do this?
Part table: Price Table:
Part# PartSupID
partsupID Price
suppID Contract#
name EffectiveDate
currency
Relationship between tables is one to many!
Thanks a lot!
I have two tables joined by PartSupID, the first table(Part) contains all info about the product Part#,supplierID,Name, currency etc and PartSupID (combination of Part# and supplier ID) as a primary key.
The second table(Price) contains the price information like POPrice, contract#, effective date. The tables are joind by PartSupId (foreign key in Price).
I want to create an append query to add new parts with the data for both tables.
Also I want to update the existing part # with new prices.
Can someone please give me some guidelines how to do this?
Part table: Price Table:
Part# PartSupID
partsupID Price
suppID Contract#
name EffectiveDate
currency
Relationship between tables is one to many!
Thanks a lot!