Nếu bạn chỉ muốn có danh sách các cột, bạn có thể sử dụng _TAB_COLS
lượt xem và ORDER BY
KHÔNG THỂ THIẾU:
select table_name, column_name, data_type, nullable
from user_tab_cols
where table_name = 'MYTABLE'
order by nullable, column_name;
Nếu bạn chỉ muốn có danh sách các cột, bạn có thể sử dụng _TAB_COLS
lượt xem và ORDER BY
KHÔNG THỂ THIẾU:
select table_name, column_name, data_type, nullable
from user_tab_cols
where table_name = 'MYTABLE'
order by nullable, column_name;