[GIS] Selection by attribute string with wildcard as part of name in ArcGIS Desktop

arcgis-10.0arcgis-desktopselect-by-attributesqlwildcard

I have an attribute field in my file geodatabase (GDB) where I'm trying to select all records that contain an underbar in the string field. The issue is that the underbar is considered a SQL wildcard on its own.

To illustrate: I need all data similar to "ID" = '42W_42_42E' or "ID" = '31A_31'

Using "ID" LIKE '%_%' returns all records, which isn't helpful. The perfect solution would simply return a count on the number of records with the underbar in their ID attribute.

Best Answer

From the page on SQL reference for query expressions used in ArcGIS

To include the percent symbol or underscore in your search string, use the ESCAPE keyword to designate another character as the escape character, which in turn indicates that a real percent sign or underscore immediately follows.

For example, this expression returns any string containing 10%, such as 10% DISCOUNT or A10%:

"AMOUNT" LIKE '%10$%%' ESCAPE '$'

For your case, try the following:

ID LIKE '%$_%' ESCAPE '$'