phpmyadmin - Modifying data in mysql table using phphmyadmin -
i want add relative path [images/abook] before example.jpg in column image of table abook using mysql phpmyadmin. want add path in 180 records. way achieve this.
you can use plain sql purpose
update abook set image=concat('images/abook/',image); if looking rows match specific criteria, should use clause
Comments
Post a Comment