VIRTUAL_COLUMN
を使用できます USER_TAB_COLS
の列 (またはALL_TAB_COLS
またはDBA_TAB_COLS
所有している権限と、問題のテーブルを所有しているユーザーによって異なります。
SELECT virtual_column
FROM all_tab_cols
WHERE owner = <<owner of the table>>
AND table_name = <<name of table>>
AND column_name = <<name of column>>