MySQL and Collation
Posted
by user294787
on Stack Overflow
See other posts from Stack Overflow
or by user294787
Published on 2010-03-16T13:53:48Z
Indexed on
2010/03/16
13:56 UTC
Read the original article
Hit count: 364
mysql
|collations
I have a table with a column using utf8_unicode_ci character set. This table stores Japanese data and my problem is that using this character set, I'm not able to store the same word written in katakana and hiragana because it's considered to be the same word.
For example ??? and ???, which mean I, me.
I know that I can change the character set to utf8_general_ci to resolve this problem but is it possible to bypass this limitation ? I mean, keep utf8_unicode_ci character set and make those two words be inserted?
Is it possible to make this work using CONVERT or CAST operators?
Thanks.
© Stack Overflow or respective owner