HI, I am working with a feature class stored in a File Geodatabase In ArcGIS 10, . I want select the maximum value by ID like the example below:
I tried the following sql query but without result : VALUE in (SELECT max(VALUE) FROM featureClass GROUP BY ID)
How can I solve?
| ID | VALUE |
| 1 | 5 |
| 1 | 2 |
| 1 | 10 |
| 2 | 3 |
| 2 | 4 |
| 2 | 6 |
| 3 | 16 |
| 3 | 20 |
| 3 | 4 |