New student here...
I am trying to select by attributes, but when I put in the query, no records are selected. I looked at one record in the table and there are multiple features under the tree. Can this be causing the problem? And how can I get around it?
Thanks.
Solved! Go to Solution.
You could write your query as such also:
"LANDCODE" IN ('941', '980', '910', '940', '930', '734')
Here is a SQL Query Reference Guide.
Steven
Hi Karen,
Can you post your query here?
Tim
When I selected each row manually from the attribute table and made it into a layer it worked.
Here is how I did the query tho for those attributes:
LANDCODE = '941' AND LANDCODE = '980' AND LANDCODE = '910' AND LANDCODE = '940' AND LANDCODE = '930' AND LANDCODE = '734'
I don't understand why it wouldn't do the same thing as selecting each row manually, tho. Can you explain?
Thanks!
You could write your query as such also:
"LANDCODE" IN ('941', '980', '910', '940', '930', '734')
Here is a SQL Query Reference Guide.
Steven
Thanks!! I'll try both methods!
Karen