Is there a definition query bug in ArcPro 3.0?
I'm filtering out certain parking lots by location type or by public access in the same query, but the OR condition isn't removing the correct features. So this query removes zero features:
LOCDESC <> 'Street' OR Access <> 'Private'
While this one removes the ones I want:
LOCDESC <> 'Street' And Access <> 'Private'