Oracle Database - Virtual Column
About
Virtual column are derived column for other table.
Articles Related
Metadata
select * from all_tab_cols
where virtual_column = 'YES'
and owner = USER;
Virtual column are derived column for other table.
select * from all_tab_cols
where virtual_column = 'YES'
and owner = USER;