MySQL search Chinese characters
- by Jasie
Hello,
Let's say I have a row:
???????
Someone enters as a query:
??
Should I break up the characters in the query, and individually perform a LIKE % % match on each character against the row, or is there any easier way to get a row that contains one of the two characters? FULLTEXT won't work with CJK characters.
Thanks!