Text Search
Query Language
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:
- business solutions
- finds documents containing 'business' or 'solutions'
- business or solutions
- same as above
- business and solutions
- finds documents containing both 'business' and 'solutions'
- business not solutions
- finds documents containing 'business' but not 'solutions'
- (business not solutions) and PCO
- finds documents containing 'PCO', plus 'business' but not 'solutions'
- financ*
- finds documents containing words starting with 'financ'
Back to Top