ArcGIS Pro 3.2.1; mobile geodatabase
I have a mobile geodatabase standalone table called SPECIES_RECORDS that has a date field:
I've created a simple SELECT * view on the table:
--species_records_vw
select * from species_records
That view displays the date correctly in the attribute table. Good.
However, with a more complex view, like a view that aggregates rows using GROUP BY, the date field is not displayed as a date. It's displayed as a DOUBLE.
--latest_vw
select
min(objectid) as objectid,
t_species,
max(t_date) as t_date
from
species_records
group by
t_species
I don't have that problem with an equivalent aggregation database view (exact same data) in a file geodatabase or an Oracle enterprise geodatabase.
Could mobile geodatabases be enhanced to display date fields in aggregated database views as dates too?