I\'m trying to build a facebook like search for my software.
I\'d like to query the table customers.
I\'ve set up a FULLTEXT Index and tried the next query>
I've found a solution to my problem. The query should be:
select * from Customers where contains(*, '"ann*"')
The quotes are the important part.