I have done this before, but it has been a while. I have a point shape file. I want to search for the "feature code" field that has the letter "A" in it. Can someone remind me how to do that?
YourField LIKE 'A%' SUBSTRING(YourField FROM 1 FOR 1) = 'A'
YourField starts with (capital) A
YourField LIKE '%A%'
YourField contains (capital) A
UPPER(YourField) LIKE '%A%'
YourField contains 'A' or 'a'
select by attributes Using Select By Attributes—Help | ArcGIS for Desktop
with the wildcard thing Building a query expression—Help | ArcGIS for Desktop
YourField like 'A%'
but type as little as possible, select the fields, the operands, where possible and ensure there are spaces as shown
Aangemelde leden kunnen berichten plaatsen, updates volgen en meer. Nieuw hier? Registreer een gratis account.
Find useful guides, FAQs, and documents to help you navigate and make the most of Esri Community.