Replace Character From Image Link

Hi



Can help me somebody with an mysql command ?!

i have “,” character on some jpg file names, and i want to replace with “_”

Thanks

Try something like

UPDATE cscart_images SET image_path = REPLACE(image_path, ',', '_') WHERE image_path LIKE '%,%';

(!) Not tested. Do not forget to make backup