开发者

MySQL Command to Remove Special Characters

开发者 https://www.devze.com 2022-12-13 10:02 出处:网络
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

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

精彩评论

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