Hello all..this is my first time here, seems like a very good website. I'm having a problem trying to figure out how to perform multiple updates to a table. I have several different criteria that each has it's own unique update. Here's an example
6M20/12 NEEDS TO UPDATE TO 62012
1PBAL/12 NEEDS TO UPDATE TO 1CB12
And so on. I have about 55 updates I need to make to this particular table. The sql starts like this for one update? Or am I wrong?
UPDATE Base_Table SET Base_Table.UCode = "62012"
WHERE (((Base_Table.UCode)="6M20/12"))
My question is this...How can I setup a query to update every type of criteria I need? Any help would be greatly appreciated. Thank you!
6M20/12 NEEDS TO UPDATE TO 62012
1PBAL/12 NEEDS TO UPDATE TO 1CB12
And so on. I have about 55 updates I need to make to this particular table. The sql starts like this for one update? Or am I wrong?
UPDATE Base_Table SET Base_Table.UCode = "62012"
WHERE (((Base_Table.UCode)="6M20/12"))
My question is this...How can I setup a query to update every type of criteria I need? Any help would be greatly appreciated. Thank you!