Using phpmyadmin, I want to run a query that will search my entire database for:
http://example.com
And replace with:
I would use insert:
insert
update t set url = insert(url, 5, 0, 's') where url like 'http:%';