All:
I want to ask one beginner question about solr query:
right now, there are Several situations I want to search:
[1] Search all documents with "fund" AND without "report"
[2] Search all documents with "fund" OR without "report"
Could any one tell me how to write these queries? I tried:
fund OR -report
fund AND -report
but both queries return same results
Thanks