I have a table with full text search enabled. But I can't get query the table using wildcard.
select * from products where contains(Description, 'Computer') returns rows with the word "Computer"
select * from products where contains(Description, 'Compute*') [replace "r" with "*"] returns nothing
What's going on?