列のリストだけが必要な場合は、_TAB_COLS
を使用できます。 ビューとORDER BY
NULL可能:
select table_name, column_name, data_type, nullable
from user_tab_cols
where table_name = 'MYTABLE'
order by nullable, column_name;
列のリストだけが必要な場合は、_TAB_COLS
を使用できます。 ビューとORDER BY
NULL可能:
select table_name, column_name, data_type, nullable
from user_tab_cols
where table_name = 'MYTABLE'
order by nullable, column_name;