Search “AND”, “OR”, “NOT” in the text of a document using OracleText

StackOverflow https://stackoverflow.com/questions/9544238

  •  04-12-2019
  •  | 
  •  

Вопрос

OracleText has special meaning for these words. What if the text itself has them?

For example, d1.txt has "cats and dogs" and d2.txt has "cats". When searching for phrase "cats and dogs" i should get d1.txt only.

Это было полезно?

Решение

You can look up for literal words by surrounding them with curly braces:

WHERE CONTAINS(column, '{cats and dogs}') > 0

In the reference books those are in the sections:

Лицензировано под: CC-BY-SA с атрибуция
Не связан с StackOverflow
scroll top