The NOT operator is exclusionary â it excludes specific search terms and so the query will not return any results with that term (or terms) in them.
Example: If you were searching for an I.T. Project Manager, you may want to employ the NOT operator in order to eliminate false positive results â results that mention your search terms but do not in fact match your target Candidate.Â
In this case, you could run: âproject managerâ and not construction â this search will not return any results with âproject managerâ and the word âconstructionâ contained within them.
đ„Example: .Net AND NOT (Java OR JSP OR J2EE) â that search will not return any results with any mention of Java, JSP, and/or J2EE.
NOT has 2 main uses:
Excluding words you do not want to retrieve to reduce false positive results (most common usage)
Starting with a very restrictive search with many search terms, you can use the NOT operator to systematically and progressively loosen the search into mutually exclusive result sets (not so common usage, but very effective strategy)
Basic example:
âProject Managerâ AND SQL AND Spanish
âProject Managerâ AND SQL AND NOT Spanish
âProject Managerâ AND NOT SQL AND Spanish
âProject Managerâ AND NOT (SQL OR Spanish)
