I need to delete all the images of a user,
But this user has a lot of images(1M).
How can I delete images in bulk with MySQL query?
In new version(3.13.2), this tips isn’t valid.
Thank you very much.
But this user has a lot of images(1M).
How can I delete images in bulk with MySQL query?
In new version(3.13.2), this tips isn’t valid.
Purge guest images older than specific date with SQL query
If you are looking to reclaim some space on your server by deleting those guest images without any views, run the below query to force expire them in database which will get deleted cleanly. update chev_images set image_expiration_date_gmt='2018-11-10 00:00:00' WHERE image_date
chevereto.com
Thank you very much.