Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Am I able to import modified X pricing table into the existing X

Status
Not open for further replies.

TCARR

Technical User
Mar 18, 2002
2
US
pricing table and have access only update the prices that have changed? Thanks...

Terri
 
Try this Update query:

Code:
UPDATE tblPriceList INNER JOIN tblNewPrices 
ON tblPriceList.ItemID = tblNewPrices.ItemID 
SET tblPriceList.Price = tblNewPrices.Price;


 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top