Reputation: 23
I have a problem building a query with full text search. In my database there a company table with name column, and one of the company name is 'the acclaimed software company'
If I run the query below, I cannot get any result:
SELECT *
FROM [dbo].[Company]
WHERE contains([CompanyName], '"the*" and "acclaimed*" and "software*" and "company*"')
If I run the query without '"the*"', I get the correct result:
SELECT *
FROM [dbo].[Company]
WHERE contains([CompanyName], '"acclaimed*" and "software*" and "company*"')
Someone could help me? Thanks
Upvotes: 0
Views: 71