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

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

  •  04-12-2019
  •  | 
  •  

Pregunta

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.

¿Fue útil?

Solución

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:

Licenciado bajo: CC-BY-SA con atribución
No afiliado a StackOverflow
scroll top