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!