When I run a command like this
UPDATE my_table SET post = replace(post, 'http://www.example.com/index.php?categoryname', 'https://example.com/categoryname');
It alerted errors
but when I run that command via CLI, it is executed and records are updated as required.
What is wrong here? seem...