开发者

MySQL Command to Remove Special Characters

what is the mysql command to remove all occurrences of some character like †in particular column of tableA in databaseA . this column is a text area 开发者_运维知识库column whose each row contains a paragraph of text.


REPLACE should work.

Take a good look at what you can do with strings.

Example:

UPDATE tableA 
SET column = REPLACE( colummn, 'â€', 'replacement string' );

This should do the job.

Good luck!

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜