ArcGIS Pro 3.2.1; File Geodatabase
I have a table that doesn't have any attribute indexes (other than the default ObjectID index):

And I have a database view:
select
*
from
species_records
inner join
(select
t_species,
max(t_date) as t_date
from
species_records
group by
t_species) l
on species_records.t_species = l.t_species
and species_records.t_date = l.t_dateThe view's properties and the attribute table headers both indicate that the view has indexed fields, even though the underlying table doesn't have indexes.


Do FGDB database view fields really have attribute indexes?
I've heard of indexed views in SQL Server and materialized views in Oracle. But those mechanisms need to be set up manually. So I'm surprised to see FGDBs automatically index certain fields in a database view, especially when the underlying table isn't indexed.