ArcGIS Pro 3.2.1; mobile geodatabase and file geodatabase
Background (works):
In an Oracle 18c 10.7.1 EGDB, I have a database view:
--species_records_latest_no_ties_vw
select
s.*
from
species_records s
inner join
(
select
min(objectid) as objectid,
min(t_unique_id) as t_unique_id,
t_species,
max(t_date) as t_date
from
(select
s.*
from
species_records s
inner join
(select
t_species,
max(t_date) as t_date
from
species_records
group by
t_species) l
on s.t_species = l.t_species
and s.t_date = l.t_date
)
group by
t_species
) l
on s.t_unique_id = l.t_unique_idWhen I add the database view to the map and open the attribute table, I can use Select By Attributes without issue.

Idea:
Could Select By Attributes functionality be added for mobile and file geodatabase views too?