QUOTE (coolcowcachers @ December 22, 2013 04:02 pm) |
I would like to build a filter using either a polygon or county to include all caches except Unknown caches without Corrected Coordinates. I'm sure this can be done with a "Where" clause but I'm not familiar with writing sqlite queries. Can someone help me with this? |
This should do it:
CODE |
(cachetype<>'U' or hascorrected) and county='xxxxxx' |
Hans