In access I have an update function where I can update information in an inventory database 1 at a time. I enter the Item name and I able to update the cost as well as a date.
Is there a way to write an sql Query to perform an update for 200 unique items?
EDIT:
I have
|ITEM NAME|ITEM COST|DATE CHANGE|
|A |$2.00 |1/1/1111 |
|B |$3.50 |1/2/1111 |
|C |$4.50 |1/3/1111 |
Let's say there are over 200 item names, I'd want to run a query to keep the item name but update the prices and date
|ITEM NAME|ITEM COST|DATE CHANGE|
|A |$3.00 |1/4/1111 |
|B |$1.50 |1/5/1111 |
|C |$84.50 |1/6/1111 |
I feel the only way to do it is to just do one long update, but I don't know if there is something better to do that.