UPDATE your_table
SET your_field = REPLACE(your_field, 'articles/updates/', 'articles/news/')
WHERE your_field LIKE '%articles/updates/%'
अब ऐसी पंक्तियाँ जो
. जैसी थीं
https://www.example.com/articles/updates/43
होगा
https://www.example.com/articles/news/43
https://www.electrictoolbox.com/mysql-find-replace-text/