Wordpres: Actualizar ruta imagenes

SELECT id FROM bd_sit_wp_ugit.wpugit_posts 
where post_content like '%https://ugit.siua.ac.cr/%' 
order by id;




UPDATE wpugit_posts
SET post_content = REPLACE(post_content, 'https://ugit.siua.ac.cr/', '/')
WHERE post_content LIKE '%https://ugit.siua.ac.cr/%'
and ID IN (

);