| |
The text search engine allows queries to be formed from
arbitrary Boolean expressions containing the keywords AND, OR, and NOT, and
grouped with parentheses. For example:
- boots jerseys
- finds documents containing 'boots' or
'jerseys'
- boots
or jerseys
- same as above
- boots
and jerseys
- finds documents containing both
'boots' and 'jerseys'
- boots
not jerseys
- finds documents containing 'boots' but
not 'jerseys'
- (boots not
jerseys) and gloves
- finds documents containing 'gloves', plus
'boots' but not 'jerseys'
- events*
- finds documents containing words
starting with 'events'
|
|