J
John Reynolds
I have a table with a field that needs to be updated.
I have the following update query:
UPDATE
SET Field1 = '5MH00'
WHERE Field1 = '5MH';
This works fine, but how do I get the update query to
update Field1 with various updates ie.
FROM TO
5MG 5MG00
5MT 5MT00
465 457
Do I have to create seperate update queries or can I merge
all these updates into one update query?
I have the following update query:
UPDATE
WHERE Field1 = '5MH';
This works fine, but how do I get the update query to
update Field1 with various updates ie.
FROM TO
5MG 5MG00
5MT 5MT00
465 457
Do I have to create seperate update queries or can I merge
all these updates into one update query?