Hi, I'm looking for a character which I can use in an oracle conatins to get ALL results.
If I search for the string "test" in a title-column I use this statement:
select *
from my_table
where contains (title,
'<query><textquery grammar="CTXCAT">test</textquery></query>') > 0
With this statement I get the rows which have the "test"-string included in title-column.
BUT: I there any way to use contains and select ALL rows?