Need SQL query to find&replace image URL

If you don’t have WPCLI installed, but still have commandline access or access via PHPMyAdmin, run:

UPDATE wp_posts SET post_content  = REPLACE(post_content,'<old URL>','<new URL>');
UPDATE wp_postmeta SET meta_value = REPLACE(meta_value,'<old URL>','<new URL>');