I wish to avoid a fullscan for a query using the LIKE
keyword:
SELECT *
FROM MYTABLE
WHERE MYCOLUMN LIKE '%WORD%'` AND PRICE < 3;
With SQL Server, we can define a fulltext index and use it with the CONTAINS
clause (and other ones). The problem: I'm not allowed to change my query, so I want the server use the fulltext index with the LIKE
keyword.
Is it possible?