Hello - I need to change all JPG extensions to jpg in my database. I usually use an update file that works so made up a new update file with below but none of the image extensions changed to jpg. No errors.
"UPDATE tablename SET imgfield = REPLACE(imgfield, 'JPG', 'jpg') WHERE RIGHT('imgfield', 3) = 'JPG'";
Thx in advance for any help.