0

I am working on indexing service of windows server. I need to search exact word on it. Could you please tell me how I can do it.

Eg: I am searching Hello World then how can I get only search for Hello World.

I am using following in my indexing search query.

WHERE CONTAINS(contents,'Hello World').

But its splitting word and searching it.

Prashant Khadatkar
  • 200
  • 1
  • 3
  • 18

1 Answers1

0
WHERE FREETEXT(Contents,'Hello World')

Here

Also check this Article

Suraj Singh
  • 4,041
  • 1
  • 21
  • 36