Dugantrain
I Love Pants
- Local time
- Today, 02:51
- Joined
- Mar 28, 2002
- Messages
- 221
Hi all, I'm looking for the SQL statement which will allow for multiple updates in the same field. Here is my current SQL statement:
UPDATE tblSpareSiteParts SET tblSpareSiteParts.fk_item_name = "IMAGE CD's set (approx 15 disks)"
WHERE (((tblSpareSiteParts.fk_item_name) Like "image cd*"));
I also need to update several other items in the field fk_item_name, all updated the exact same way as above.
UPDATE tblSpareSiteParts SET tblSpareSiteParts.fk_item_name = "IMAGE CD's set (approx 15 disks)"
WHERE (((tblSpareSiteParts.fk_item_name) Like "image cd*"));
I also need to update several other items in the field fk_item_name, all updated the exact same way as above.