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

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

  •  04-12-2019
  •  | 
  •  

Frage

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.

War es hilfreich?

Lösung

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:

Lizenziert unter: CC-BY-SA mit Zuschreibung
Nicht verbunden mit StackOverflow
scroll top