A city planner is using ArcGIS to determine suitable areas that meet specific zoning criteria. The city's zoning polygon feature class has a ZONE attribute field that consists of one- or two-letter codes. What is the correct SQL statement to use to select all zones designated type E, F, or FF?
- ZONE = 'E' AND ZONE = 'F' OR ZONE = 'FF'
- ZONE IN ('E', 'F', 'FF')
- ZONE = 'E' OR ZONE = 'F%'
- ZONE CONTAINS ('E', 'F', OR 'FF')
Reveal Solution Next Question