ArcGIS Pro 3.2.1; mobile geodatabase
I have a mobile geodatabase standalone table that has a date field:
And I have a database view that aggregates rows using GROUP BY. However, the date field is displayed incorrectly 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 would like to permanently define the field as a date when registering the view with the geodatabase. So that the field is treated as a date in ArcGIS Pro.