Reputation: 169
I have a huge database of book authors in which names of French authors have not been stored correctly and the French characters have been replaced by some strange characters!
Can I solve the problem by a SQL query? if yes, I do appreciate if you give me a clue.
Thanks,
Upvotes: 5
Views: 3047
Reputation: 41428
Since french characters are all in UTF8 and you probably don't have a multi-byte encoding character set on your table, this should fix the issue.
You might be able to just run an alter table to change the encoding, but in my experience that can be a roll of the dice.
Upvotes: 2