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!
LIKE % %is going to help with searches that have no meaning. It's like finding "Eat an apple a day" from a search ofd appin English. – Todd Main Apr 18 '10 at 10:30一天 蘋果, the question still applies. I guess I'll have to split them. – ash Apr 18 '10 at 21:31