Suppose there is an oracle query which calls an function
select * from table(xyz(to_date('10/04/2017', 'dd/mm/yyyy')))
and function xyz has two select statements in it
select * from A
and
select * from B
So this query references(reads/writes/updates) two tables A
and B
Is there a way to know the number of tables that are referenced when I run this query on oracle ?