what is the mysql command to remove all occurances of some charachter like †in particular collumn of tableA in databaseA . this collumnn is a text area collumn whose each row contains a paragraph of text.
views:
19answers:
1
A:
REPLACE
should work.
Take a good look at what you can do with strings.
Example:
UPDATE tableA SET collumn = REPLACE( colummn, 'â€', 'replacement string' );
This should do the job.
Good luck!
Jacob Relkin
2009-12-01 10:40:37