použijte REPLACE. a pokud je v poli index, UPDATE je může použít
UPDATE t
set url = REPLACE(url, 'http:', 'https:')
WHERE url LIKE '%http:%';
změňte pouze example.com
toto najde pouze řádek s 'http://example.com '
UPDATE t
set url = REPLACE(url, 'http:', 'https:')
WHERE url LIKE '%http://example.com%';
nebo to najde všechny řádky s http://, ale změní pouze toto http://example.com na https://example.com
UPDATE t
set url = REPLACE(url, 'http://example.com', 'https://example.com')
WHERE url LIKE '%http:%';