How to Find and Replace Data in MySQL :
Replace .JPG(Capital Letter) to .jpg(Small Letter)
Syntax :
update [table_name] set [field_name] = replace([field_name],'[string_ to_find]','[string_to_replace] ');
Example :
update products_bk set product_first_image = replace(product_first_image,'. JPG','.jpg');
Replace .JPG(Capital Letter) to .jpg(Small Letter)
Syntax :
update [table_name] set [field_name] = replace([field_name],'[string_
Example :
update products_bk set product_first_image = replace(product_first_image,'.