Hvis du blot vil have en liste over kolonnerne, kan du bruge _TAB_COLS
visninger og ORDER BY
NULLEBAR:
select table_name, column_name, data_type, nullable
from user_tab_cols
where table_name = 'MYTABLE'
order by nullable, column_name;
Hvis du blot vil have en liste over kolonnerne, kan du bruge _TAB_COLS
visninger og ORDER BY
NULLEBAR:
select table_name, column_name, data_type, nullable
from user_tab_cols
where table_name = 'MYTABLE'
order by nullable, column_name;