Is there any other way I can write the query for avoiding using "LIKE" operator, as LIKE usage effects Performance while searching large amount of data.
My Table:
Products
--------
Id int
ProductName NVARCHAR(255)
Qry: Seraching for products which contains word "EBS"
select * from Products where name like 'EBS%'
A full-text index is placed on the Products table. For few products im not able to retrieve data from PRODUCTS Table thru full-text index.
select *
from Products
WHERE contains(ProductName,@Contains)
Order by MT.Name
-- No Results for the above qry select * from Products where name like 'EBS%' ( Poor performance) so there is anyother way to implement this.