Hello! I am trying to extract specific rows from a raster to make a new raster using the Extract by Attribute tool and I am having some issues. I am trying to extract all rows with values between 122 and 185, for example. When I try and build my query I use: "VALUE" BETWEEN 122 AND 185 and it keeps telling me that "An invalid SQL statement was used". I've tried this a number of different ways and keep coming up empty handed. Any help appreciated!
Or even if you have a better way of creating a new raster from selected attributes...
Solved! Go to Solution.
skipping between
( "VALUE" >= 122) AND ("VALUE" <= 185)
would be the next thing to try
skipping between
( "VALUE" >= 122) AND ("VALUE" <= 185)
would be the next thing to try
Thank you! I was so frustrated with it.