Question
SQL problems
In Access 2000, I have a table called Nikon_Prices that I
need to update to the new prices. I've gotten the new prices in
Excel format and converted them to Access and put this new table,
4_2008Prices into the overall database. So I'm trying to:
update Nikon_Prices
set ListPrice, Description
where PartNumber (from table Nikon_Prices) = PartNumber (from table 4_2008Prices).
I need to replace all the old Nikon prices with the new prices. There are non-Nikon prices in table Nikon_Prices that I don't want to change. Any help?
update Nikon_Prices
set ListPrice, Description
where PartNumber (from table Nikon_Prices) = PartNumber (from table 4_2008Prices).
I need to replace all the old Nikon prices with the new prices. There are non-Nikon prices in table Nikon_Prices that I don't want to change. Any help?
