Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Mailing Lists -> Oracle-L -> Re: "google search" using Oracle Text
>for example, if the search string is "Oracle Text", I would execute the
>following queries to retrieve the relevant records:
>select * from texttable where contains (text, 'Oracle Text')>1;
>select * from texttable where contains (text, 'Oracle')>1;
>select * from texttable where contains (text, 'Text')>1;
to get a document with any of the query terms use OR (|)
select * from texttable where contains (text, 'Oracle OR Text')>1;
see
http://download-west.oracle.com/docs/cd/B10501_01/text.920/a96518/cqoper.htm#1531
regards
Jaromir D.B. Nemec
PS: Mladen - fire (on) your backup admin.
-- Archives are at http://www.freelists.org/archives/oracle-l/ FAQ is at http://www.freelists.org/help/fom-serve/cache/1.html -----------------------------------------------------------------Received on Mon Apr 19 2004 - 01:36:00 CDT
![]() |
![]() |