Hi
I have a table in SQL Server with the following columns:
id int (primary key)
text nvarchar(max) (full text indexed)
type int
and I have queries like this:
where Contains([text], @text)
or
where Contains([text], @text) AND [type] = 3
However the second query is slow. I think I should integrate full text index with [type] field.
Is there another solution?
Thanks