यदि आप केवल स्तंभों की सूची चाहते हैं, तो आप _TAB_COLS
. का उपयोग कर सकते हैं विचार और ORDER BY
न्यूलेबल:
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
न्यूलेबल:
select table_name, column_name, data_type, nullable
from user_tab_cols
where table_name = 'MYTABLE'
order by nullable, column_name;