Các bảng được sử dụng để tạo chế độ xem có thể được chọn bằng cách sử dụng truy vấn:
select
name ,
type ,
referenced_name ,
referenced_type
from
user_dependencies
where
name = 'VIEW_NAME' and
type = 'VIEW' and
referenced_type = 'TABLE';
Nếu các cột chế độ xem có cùng tên cột của cột bảng, thì vui lòng thử truy vấn dưới đây:
select
distinct table_name, column_name
from
all_tab_columns
where table_name in (select
referenced_name
from
user_dependencies
where
name = 'VIEW_NAME' and
type = 'VIEW' and
referenced_type = 'TABLE')
and column_name in (select
column_name
from
all_tab_columns
where
table_name = 'VIEW_NAME');