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

Popular posts from this blog

android - Inheriting from Theme.AppCompat* -

broadcastreceiver - android BOOT_COMPLETED not received if not activity intent-filter -

basic authentication with http post params android -