In ArcMap 10.5, I want to select the rows where the modulus of the objectid by 3 equals 1.
How to write a SQL sentence in select by attribute window?
My current query statement is something like this:
MOD( [OBJECTID],3)=1
but unfortunately it selects all of the rows. What's the problem with that?
"id" %3 = 1– Joseph Aug 11 '17 at 10:19