MATCH (FullTextSearch) AGAINST ('k*' IN BOOLEAN MODE)
return something
Namely anything with a word that start with k
MATCH (FullTextSearch) AGAINST ('ku*' IN BOOLEAN MODE) return less
MATCH (FullTextSearch) AGAINST ('kuc*' IN BOOLEAN MODE)
return even less
we figure that more should be returned if we just use *
MATCH (FullTextSearch) AGAINST ('*' IN BOOLEAN MODE)
returns nothing instead of what it should, namely EVERYTHING. Why?
Note: This means I have to specially code my sql command for empty string.