I changed my default Wordpress download directory:
mysite.com/files/year/month/upload
in
mysite.com/images/upload
I am a little fixated on the correct sql syntax to replace /files/year/month/ with /images/ .
Using phpmyadmin, I selected the correct db, selected the correct table and searched / found what needs to be changed using this sql:
SELECT * FROM `wp_postmeta` WHERE `meta_value` LIKE '%/files/%/%/%'
Now I need to REPLACE all FROM wp_postmeta WHERE meta_value LIKE% / files /% /% / WITH / images /
source share