Reputation: 9583
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.
Upvotes: 2
Views: 166
Reputation: 163318
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!
Upvotes: 2