Update replace semicolon in SQL gets syntax error
问题 I import an SQL file to my database but there is something wrong. All punctuation at the end of a sentence/phrase have extra space. Example: This is a sentence . This , as you can see , is a problem . Do it ! Should be: This is a sentence. This, as you can see, is a problem. Do it! To correct, I am planning to run SQL commands on phpMyAdmin in this context UPDATE book SET content = REPLACE(content,' .','.'); UPDATE book SET content = REPLACE(content,' ,',','); UPDATE book SET content =